From 0cbb4a12085eabba1be2f411823a0c504206fc2f Mon Sep 17 00:00:00 2001 From: Seth Golub Date: Sat, 1 Apr 2017 21:17:37 -0700 Subject: [PATCH] --filetype doesn't need to use up a short form; it won't be used often. --- heatmap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/heatmap.py b/heatmap.py index 449c0d0..8088b10 100755 --- a/heatmap.py +++ b/heatmap.py @@ -1002,7 +1002,7 @@ def _make_argparser(self): parser.add_argument('--shp_file', help=SUPPRESS) inputs.add_argument('-g', '--gpx', help=SUPPRESS) parser.add_argument( - '-t', '--filetype', + '--filetype', choices=list(self._filetypes.keys()), default='auto', help=('Treat all input files as this type. ("auto" will guess ' 'based on the filename extension.); default: %(default)s'))