Skip to content

Commit

Permalink
#98: Add option to build SQL create table statement.
Browse files Browse the repository at this point in the history
Fixed shortcut for command line option --create.
  • Loading branch information
roskakori committed Apr 14, 2015
1 parent a87d3a8 commit 94f665e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cutplace/applications.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def set_options(self, argv):
parser.add_argument(
'data_paths', metavar='DATA-FILE', nargs='*', help='data file(s) to validate')
parser.add_argument(
'--create', '--C', action='store_true', dest='is_create_sql',
'--create', '-C', action='store_true', dest='is_create_sql',
help='write SQL statement to create a table representing CID-FILE')
args = parser.parse_args(argv[1:])

Expand Down

0 comments on commit 94f665e

Please sign in to comment.