1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fix command line option error message

TypeError: unsupported operand type(s) for +: 'GetoptError' and 'str'
caused by commit 65b86f2d1d
This commit is contained in:
Juhani Numminen 2020-03-01 12:07:48 +02:00
parent 0d98da15e6
commit 300d5dca7a

View file

@ -93,7 +93,7 @@ def parse_option(argv):
"sound-mod=",
"help"])
except getopt.GetoptError as err:
print_err(err + "\n" + _("try %s --help for more information") %
print_err(str(err) + "\n" + _("try %s --help for more information") %
prog_name, 0)
return None
opts = {"help": False,