Skip to content

Commit

Permalink
Fix settings printing blank line
Browse files Browse the repository at this point in the history
Fixes #19
  • Loading branch information
Marcus Rosenow authored and Marcus Rosenow committed Aug 17, 2015
1 parent 89736f9 commit 918d4f7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion bin/commands/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,9 @@ def list(section, config, count, keys, format, file=None):


def _list(**kwargs):
print list(**kwargs)
list_output = list(**kwargs)
if list_output:
print list_output


def _dry_destroy_section(config, section):
Expand Down

0 comments on commit 918d4f7

Please sign in to comment.