summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-02-06 12:46:33 +0000
committerCarl Hetherington <cth@carlh.net>2019-02-06 12:46:33 +0000
commit9523450b1690812a306265c5ae0a264b6c79f18e (patch)
treec7b17eba5c50e07fdb1d9b12b9bf614c0b59d806
parentd4e1d33cf3ba1a7ae3f8476ec17d6ed1e11577f7 (diff)
More pythonic whitespace.
-rw-r--r--i18n.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/i18n.py b/i18n.py
index dc0a6ca7c..76084e3ec 100644
--- a/i18n.py
+++ b/i18n.py
@@ -32,5 +32,5 @@ def po_to_mo(dir, name, bld):
po = os.path.join('po', '%s.po' % lang)
mo = os.path.join('mo', lang, '%s.mo' % name)
- bld(rule = 'msgfmt -c -f ${SRC} -o ${TGT}', source = bld.path.make_node(po), target = bld.path.get_bld().make_node(mo))
+ bld(rule='msgfmt -c -f ${SRC} -o ${TGT}', source=bld.path.make_node(po), target=bld.path.get_bld().make_node(mo))
bld.install_files(os.path.join('${PREFIX}', 'share', 'locale', lang, 'LC_MESSAGES'), mo)