Skip to content

Commit

Permalink
Fix the DSTAT_OPTS environment variable usage
Browse files Browse the repository at this point in the history
  • Loading branch information
dagwieers committed Nov 30, 2013
1 parent 229d609 commit 0753096
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dstat
Original file line number Diff line number Diff line change
Expand Up @@ -2687,7 +2687,7 @@ def perform(update):
if __name__ == '__main__':
try:
initterm()
op = Options(sys.argv[1:]+os.getenv('DSTAT_OPTS','').split())
op = Options(os.getenv('DSTAT_OPTS','').split() + sys.argv[1:])
theme = set_theme()
if op.profile:
import profile
Expand Down

0 comments on commit 0753096

Please sign in to comment.