diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2016-05-25 15:49:57 +0200 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2016-05-25 15:50:06 +0200 |
commit | 33799afe83eec4200ff140e9bf5eae83701a4d7f (patch) | |
tree | 5984360c31efa8915fd4025b3f0c6d4dc513dbc5 | |
parent | 6700cc993cc07fb0f5b8b577ff8c4afcf0b18274 (diff) | |
parent | 678513cc94995a243a7e56593fe3e44e003cb597 (diff) |
Merge #8092: Correct small typo in extract_strings_qt.py
678513c Correct small typo in extract_strings_qt.py (Mitchell Cash)
-rwxr-xr-x | share/qt/extract_strings_qt.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qt/extract_strings_qt.py b/share/qt/extract_strings_qt.py index 7728a43775..2ba8bb9b3a 100755 --- a/share/qt/extract_strings_qt.py +++ b/share/qt/extract_strings_qt.py @@ -32,7 +32,7 @@ def parse_po(text): in_msgstr = False # message start in_msgid = True - + msgid = [line[6:]] elif line.startswith('msgstr '): in_msgid = False @@ -67,7 +67,7 @@ f.write(""" #include <QtGlobal> -// Automatically generated by extract_strings.py +// Automatically generated by extract_strings_qt.py #ifdef __GNUC__ #define UNUSED __attribute__((unused)) #else |