diff options
Diffstat (limited to 'bin/pygettext.py')
-rwxr-xr-x | bin/pygettext.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/pygettext.py b/bin/pygettext.py index d6e1b4f7..84421ee8 100755 --- a/bin/pygettext.py +++ b/bin/pygettext.py @@ -200,8 +200,8 @@ def make_escapes(pass_iso8859): global escapes if pass_iso8859: # Allow iso-8859 characters to pass through so that e.g. 'msgid - # "Höhe"' would result not result in 'msgid "H\366he"'. Otherwise we - # escape any character outside the 32..126 range. + # "H[o-umlaut]he"' would result not result in 'msgid "H\366he"'. + # Otherwise we escape any character outside the 32..126 range. mod = 128 else: mod = 256 |