Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit 5d7ddb0

Browse files
committed
was missing a newline at the end of the --dump command output
1 parent 0193fcf commit 5d7ddb0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

cli4/cli4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def convert_load_balancers_map_regions(cf, region_name):
151151
def dump_commands(cf):
152152
"""dump a tree of all the known API commands"""
153153
w = cf.api_list()
154-
sys.stdout.write('\n'.join(w))
154+
sys.stdout.write('\n'.join(w) + '\n')
155155

156156
def cli4(args):
157157
"""Cloudflare API via command line"""

0 commit comments

Comments
 (0)