Skip to content

Commit

Permalink
was missing a newline at the end of the --dump command output
Browse files Browse the repository at this point in the history
  • Loading branch information
mahtin committed Dec 22, 2016
1 parent 0193fcf commit 5d7ddb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli4/cli4.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ def convert_load_balancers_map_regions(cf, region_name):
def dump_commands(cf):
"""dump a tree of all the known API commands"""
w = cf.api_list()
sys.stdout.write('\n'.join(w))
sys.stdout.write('\n'.join(w) + '\n')

def cli4(args):
"""Cloudflare API via command line"""
Expand Down

0 comments on commit 5d7ddb0

Please sign in to comment.