Skip to content

Commit bac8b8d

Browse files
committed
PEP8
1 parent ab02d21 commit bac8b8d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Tools/i18n/pygettext.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -506,14 +506,14 @@ def _extract_message(self, node):
506506
return
507507
if len(errors) == 1:
508508
print(f'*** {self.filename}:{node.lineno}: {errors[0]}',
509-
file=sys.stderr)
509+
file=sys.stderr)
510510
else:
511511
# There are multiple keyword specs for the function name and
512512
# none of them could be exxtracted. Print a general error
513513
# message and list the errors for each keyword spec.
514514
print(f'*** {self.filename}:{node.lineno}: '
515-
f'No keywords matched gettext call "{func_name}":',
516-
file=sys.stderr)
515+
f'No keywords matched gettext call "{func_name}":',
516+
file=sys.stderr)
517517
for spec, err in zip(specs, errors, strict=True):
518518
unparsed = unparse_spec(func_name, spec)
519519
print(f'\tkeyword="{unparsed}": {err}', file=sys.stderr)

0 commit comments

Comments
 (0)