aboutsummaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorMitchell Cash <mitchell.cash@gmail.com>2016-05-24 10:43:01 +1000
committerMitchell Cash <mitchell.cash@gmail.com>2016-05-24 10:43:01 +1000
commit678513cc94995a243a7e56593fe3e44e003cb597 (patch)
tree9db58cf3d3621e9204d812c0509c5244119e921a /share
parent77b49acc85d05eda96b6892db835d79f30314a3b (diff)
downloadbitcoin-678513cc94995a243a7e56593fe3e44e003cb597.tar.xz
Correct small typo in extract_strings_qt.py
Diffstat (limited to 'share')
-rwxr-xr-xshare/qt/extract_strings_qt.py4
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