From: Frank Brehm Date: Tue, 24 Sep 2019 16:19:16 +0000 (+0200) Subject: Creating symlink lib/cr_tf/locale X-Git-Tag: 1.3.3~8 X-Git-Url: https://git.uhu-banane.org/?a=commitdiff_plain;h=29d87ba60596e8cd0019386f5f33c14a9fe8697c;p=pixelpark%2Fcreate-terraform.git Creating symlink lib/cr_tf/locale --- diff --git a/setup.py b/setup.py index 04fa929..1abc62d 100644 --- a/setup.py +++ b/setup.py @@ -142,6 +142,8 @@ def create_mo_files(): mo_files = [] for po_path in glob.glob(PO_FILES): mo = pathlib.Path(po_path.replace('.po', '.mo')) + # print("Compiling message catalog {p!r} -> {m!r}.".format( + # p=str(po_path), m=str(mo))) if not mo.exists(): subprocess.call(['msgfmt', '-o', str(mo), po_path]) mo_files.append(str(mo))