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:
parent
0d98da15e6
commit
300d5dca7a
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Reference in a new issue