We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7204eb5 commit 964f42cCopy full SHA for 964f42c
bpython/args.py
@@ -46,7 +46,7 @@ def error(self, msg):
46
47
48
def version_banner(base="bpython"):
49
- return "{} version {} on top of Python {} {}".format(
+ return _("{} version {} on top of Python {} {}").format(
50
base,
51
__version__,
52
sys.version.split()[0],
@@ -55,7 +55,7 @@ def version_banner(base="bpython"):
55
56
57
def copyright_banner():
58
- return "{} See AUTHORS.rst for details.".format(__copyright__)
+ return _("{} See AUTHORS.rst for details.").format(__copyright__)
59
60
61
def parse(args, extras=None, ignore_stdin=False):
0 commit comments