diff options
| author | Pieter Wuille <[email protected]> | 2016-05-25 15:49:57 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2016-05-25 15:50:06 +0200 |
| commit | 33799afe83eec4200ff140e9bf5eae83701a4d7f (patch) | |
| tree | 5984360c31efa8915fd4025b3f0c6d4dc513dbc5 | |
| parent | Merge #8095: Test framework: only cleanup on successful test runs (diff) | |
| parent | Correct small typo in extract_strings_qt.py (diff) | |
| download | discoin-33799afe83eec4200ff140e9bf5eae83701a4d7f.tar.xz discoin-33799afe83eec4200ff140e9bf5eae83701a4d7f.zip | |
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 7728a4377..2ba8bb9b3 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 |