diff --git a/src/modules/testmodule.py b/src/modules/testmodule.py index a2d7130dd..907e704b4 100755 --- a/src/modules/testmodule.py +++ b/src/modules/testmodule.py @@ -67,8 +67,8 @@ def main(): help="Dir containing the Python module.") parser.add_argument("globalstorage_yaml", nargs="?", help="A yaml file to initialize GlobalStorage.") - parser.add_argument("configuration_yaml", nargs="?", - help="A yaml file to initialize the configuration dict.") + help_desc = "A yaml file to initialize the configuration dict." + parser.add_argument("configuration_yaml", nargs="?", help=help_desc) args = parser.parse_args() print("Testing module in: " + args.moduledir)