Skip to content

Commit

Permalink
fixed prints
Browse files Browse the repository at this point in the history
  • Loading branch information
ekalinin committed Jul 11, 2014
1 parent d095009 commit e87cc0c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions nodeenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ def _dump(cls):
"""
Print defaults for the README.
"""
print " [nodeenv]"
print " " + "\n ".join("%s = %s" % (k, v)
print (" [nodeenv]")
print (" " + "\n ".join("%s = %s" % (k, v)
for k, v in sorted(vars(cls).iteritems())
if not k.startswith('_'))
if not k.startswith('_')))


def clear_output(out):
Expand Down

0 comments on commit e87cc0c

Please sign in to comment.