Skip to content

Commit 054b3b4

Browse files
authored
Merge pull request weewx#147 from gjr80/wee_import_dates
Fix conflicting --date argument format string
2 parents 15878bf + a01ff80 commit 054b3b4

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

bin/wee_import

+7-7
Original file line numberDiff line numberDiff line change
@@ -481,21 +481,21 @@ usage = """wee_import --help
481481
[--config=CONFIG_FILE]
482482
[--import-config=IMPORT_CONFIG_FILE]
483483
--source=CSV_SOURCE_FILE
484-
[--date YYYY/MM/DD|YYYY/MM/DD hh:mm-YYYY/MM/DD hh:mm]
484+
[--date "YYYY/MM/DD|YYYY/MM/DD hh:mm-YYYY/MM/DD hh:mm"]
485485
[--calc-missing] [--dry-run]
486486
[--log=None|LOG_FACILITY] [--verbose]
487487
wee_import --wunder
488488
[--config=CONFIG_FILE]
489489
[--import-config=IMPORT_CONFIG_FILE]
490490
--station=PWS_NAME
491-
[--date YYYY/MM/DD|YYYY/MM/DD hh:mm-YYYY/MM/DD hh:mm]
491+
[--date "YYYY/MM/DD|YYYY/MM/DD hh:mm-YYYY/MM/DD hh:mm"]
492492
[--calc-missing] [--dry-run]
493493
[--log=None|LOG_FACILITY] [--verbose]
494494
wee_import --cumulus
495495
[--config=CONFIG_FILE]
496496
[--import-config=IMPORT_CONFIG_FILE]
497497
--source=MONTHLY_LOGS_FOLDER
498-
[--date YYYY/MM/DD|YYYY/MM/DD hh:mm-YYYY/MM/DD hh:mm]
498+
[--date "YYYY/MM/DD|YYYY/MM/DD hh:mm-YYYY/MM/DD hh:mm"]
499499
[--calc-missing] [--dry-run]
500500
[--log=None|LOG_FACILITY] [--verbose]
501501
wee_import --version
@@ -545,10 +545,10 @@ def main():
545545
parser.add_option('--station', dest='station', type=str,
546546
metavar="PWS_NAME",
547547
help="Station name to be used (eg, \"KORHOODR3\").")
548-
parser.add_option("--date", dest="date", type=str, metavar="YYYY-MM-DD",
549-
help="Date to import as a string of form \"YYYY-MM-DD\" "
550-
"or a date range of form \"YYYY-MM-DD hh:mm-"
551-
"YYYY-MM-DD hh:mm\"")
548+
parser.add_option("--date", dest="date", type=str, metavar="YYYY/MM/DD",
549+
help="Date to import as a string of form \"YYYY/MM/DD\" "
550+
"or a date range of form \"YYYY/MM/DD hh:mm-"
551+
"YYYY/MM/DD hh:mm\"")
552552
parser.add_option('--log', dest='logging', type=str,
553553
metavar="LOG_FACILITY", default='weewx',
554554
help="Control logging of most output. If omitted or "

0 commit comments

Comments
 (0)