Correct small typo in extract_strings_qt.py

This commit is contained in:
Mitchell Cash
2016-05-24 10:43:01 +10:00
committed by lateminer
parent 504af0f89e
commit cceb5fb27a

View File

@@ -35,7 +35,7 @@ def parse_po(text):
in_msgstr = False
# message start
in_msgid = True
msgid = [line[6:]]
elif line.startswith('msgstr '):
in_msgid = False
@@ -70,7 +70,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