Skip to content
Snippets Groups Projects
Commit f2164af8 authored by Hal Simpson's avatar Hal Simpson
Browse files

Changed argument from forceout to output-edge-forceout, to be consistant with...

Changed argument from forceout to output-edge-forceout, to be consistant with other argument naming conventions
parent 2f7dd8b7
No related branches found
No related tags found
No related merge requests found
...@@ -275,7 +275,7 @@ def main(args): ...@@ -275,7 +275,7 @@ def main(args):
interval=args.interval, interval=args.interval,
locationCode=locationcode, locationCode=locationcode,
tag=args.output_edge_tag, tag=args.output_edge_tag,
forceout=args.forceout) forceout=args.output_edge_forceout)
else: else:
print >> sys.stderr, "Missing required output directive" print >> sys.stderr, "Missing required output directive"
...@@ -380,16 +380,16 @@ def parse_args(args): ...@@ -380,16 +380,16 @@ def parse_args(args):
parser.add_argument('--output-edge-tag', parser.add_argument('--output-edge-tag',
default='GEOMAG', default='GEOMAG',
help='ID Tag for edge connections, defaults to GEOMAG') help='ID Tag for edge connections, defaults to GEOMAG')
parser.add_argument('--output-edge-forceout',
action='store_true',
default=False,
help='Flag to force data into miniseed blocks. Should only ' +
'be used when certain the data is self contained.')
parser.add_argument('--realtime', parser.add_argument('--realtime',
action='store_true', action='store_true',
default=False, default=False,
help='Flag to run the last hour if interval is minute, ' + help='Flag to run the last hour if interval is minute, ' +
'or the last 10 minutes if interval is seconds') 'or the last 10 minutes if interval is seconds')
parser.add_argument('--forceout',
action='store_true',
default=False,
help='Flag to force data into miniseed blocks. Should only ' +
'be used when certain the data is self contained.')
# Input group # Input group
input_group = parser.add_mutually_exclusive_group(required=True) input_group = parser.add_mutually_exclusive_group(required=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment