Make the new cmd_showing_output select and display data from stderr in
[python_utils.git] / site_config.py
index caaf3d8c1c49d9e3d26e5ab8efde06c8461808a7..1281661abb6ac52d9fd6384916ce617731ad34b3 100644 (file)
@@ -12,15 +12,15 @@ from type.locations import Location
 logger = logging.getLogger(__name__)
 
 args = config.add_commandline_args(
-    f'({__file__})',
-    'Args related to __file__'
+    f'Global Site Config ({__file__})',
+    'Args related to global site-specific configuration'
 )
 args.add_argument(
     '--site_config_override_location',
     default='NONE',
     const='NONE',
     nargs='?',
-    choices=('HOUSE', 'CABIN', 'NONE'),
+    choices=['HOUSE', 'CABIN', 'NONE'],
     help='Where are we, HOUSE, CABIN?  Overrides standard detection code.',
 )