Skip to content

Commit 2b01503

Browse files
colinoflynnwhitequark
authored andcommitted
cli: Fix small typo ("f{arg} -> f"{arg})
1 parent cad5fa4 commit 2b01503

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

software/glasgow/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ def factory_manufacturer(arg):
375375
if len(arg) <= 23:
376376
return arg
377377
else:
378-
raise argparse.ArgumentTypeError("f{arg} is too long for the manufacturer field")
378+
raise argparse.ArgumentTypeError(f"{arg} is too long for the manufacturer field")
379379

380380
p_factory = subparsers.add_parser(
381381
"factory", formatter_class=TextHelpFormatter,

0 commit comments

Comments
 (0)