avoid using fstrings in client code
This commit is contained in:
parent
61675aec2f
commit
5fb2dfa8ca
1 changed files with 1 additions and 1 deletions
|
|
@ -1006,7 +1006,7 @@ def handle_call(goptions, session, args):
|
|||
if options.bare_strings:
|
||||
return arg
|
||||
else:
|
||||
parser.error(f"Invalid value: {arg!r}")
|
||||
parser.error("Invalid value: %r" % arg)
|
||||
|
||||
# the method to call
|
||||
name = args[0]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue