diff options
| -rw-r--r-- | config.py | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -224,10 +224,9 @@ def parse(entry_module: Optional[str]) -> Dict[str, Any]: if loadfile is not None: if saw_other_args: - print( - 'WARNING: ignoring some commandline arguments; only args in --config_loadfile be parsed.', - file=sys.stderr - ) + msg = f'WARNING: Augmenting commandline arguments with those from {loadfile}.' + print(msg, file=sys.stderr) + saved_messages.append(msg) if not os.path.exists(loadfile): print(f'--config_loadfile argument must be a file, {loadfile} not found.', file=sys.stderr) @@ -235,7 +234,7 @@ def parse(entry_module: Optional[str]) -> Dict[str, Any]: with open(loadfile, 'r') as rf: newargs = rf.readlines() newargs = [arg.strip('\n') for arg in newargs if 'config_savefile' not in arg] - sys.argv = sys.argv[:1] + newargs + sys.argv += newargs # Parse (possibly augmented, possibly completely overwritten) # commandline args with argparse normally and populate config. |
