diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-02-06 12:46:33 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-02-06 12:48:00 +0000 |
| commit | 32a1ce5178d4e1e8bdd375e0786ce87932d0e64d (patch) | |
| tree | dc005ce00c5cefd5001e0135386673d4865de536 | |
| parent | 1d35d6bc72758b1976ddf14842b443cb0680e266 (diff) | |
More pythonic whitespace.
| -rw-r--r-- | i18n.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
