From: Carl Hetherington Date: Wed, 6 Feb 2019 12:46:33 +0000 (+0000) Subject: More pythonic whitespace. X-Git-Tag: v2.12.20~3 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;ds=sidebyside;h=32a1ce5178d4e1e8bdd375e0786ce87932d0e64d;p=dcpomatic.git More pythonic whitespace. --- 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)