Refinements

This commit is contained in:
Ircama 2024-07-30 01:18:02 +02:00
parent 3def70e87a
commit 4dff0ac657
4 changed files with 20 additions and 15 deletions

6
ui.py
View file

@ -894,7 +894,7 @@ if __name__ == "__main__":
"--pickle",
dest='pickle',
type=argparse.FileType('rb'),
help="Save a pickle archive for subsequent load by ui.py and epson_print_conf.py",
help="Load a pickle configuration archive saved by parse_devices.py",
default=None,
nargs=1,
metavar='PICKLE_FILE'
@ -904,8 +904,8 @@ if __name__ == "__main__":
"--override",
dest='override',
action='store_true',
help="Override the default configuration with the one of the pickle "
"file instead of merging",
help="Replace the default configuration with the one in the pickle "
"file instead of merging (default is to merge)",
)
args = parser.parse_args()
conf_dict = {}