diff --git a/geomagio/Controller.py b/geomagio/Controller.py index 0614474dbe841ac46b8eb6c9aeef75965626d84b..b682693a7622f9bee586db4e6b6d5634ac365cfd 100644 --- a/geomagio/Controller.py +++ b/geomagio/Controller.py @@ -275,7 +275,7 @@ def main(args): interval=args.interval, locationCode=locationcode, tag=args.output_edge_tag, - forceout=args.forceout) + forceout=args.output_edge_forceout) else: print >> sys.stderr, "Missing required output directive" @@ -380,16 +380,16 @@ def parse_args(args): parser.add_argument('--output-edge-tag', default='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', action='store_true', default=False, help='Flag to run the last hour if interval is minute, ' + '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 = parser.add_mutually_exclusive_group(required=True)