From 72235f7d70879e81ee972e74880dcf5f1000c46d Mon Sep 17 00:00:00 2001 From: Dan Howe Date: Thu, 19 Apr 2018 07:59:31 +1000 Subject: [PATCH] Fix typo in comment --- dxf_to_csv/dxf_to_csv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dxf_to_csv/dxf_to_csv.py b/dxf_to_csv/dxf_to_csv.py index 48f31f1..4c067e1 100644 --- a/dxf_to_csv/dxf_to_csv.py +++ b/dxf_to_csv/dxf_to_csv.py @@ -123,7 +123,7 @@ def main(): parser.add_argument( '-l', action='store_true', help='show list of layers', default=False) - # List usage if no arguments are provided + # Print usage if no arguments are provided if len(sys.argv) == 1: parser.print_help(sys.stderr) sys.exit(1)