diff --git a/zapp/compiler/__main__.py b/zapp/compiler/__main__.py index 3a236de..d563b4a 100644 --- a/zapp/compiler/__main__.py +++ b/zapp/compiler/__main__.py @@ -12,7 +12,6 @@ import zipfile from email.parser import Parser from itertools import chain from pathlib import Path -from pprint import pprint from tempfile import TemporaryDirectory from zapp.support.pep425 import compress_tags, decompress_tag @@ -216,9 +215,9 @@ def rezip_wheels(opts, manifest): pass wf = str(wf) else: - if opts.debug: - print("---") - pprint({"$type": "whl", **w}) + if opts.debug and False: + print("\n---") + json.dump({"$type": "whl", **w}, sys.stdout, indent=2) wf = zip_wheel(opts.tmpdir, w) @@ -330,15 +329,17 @@ def main(): manifest = insert_manifest_json(opts, manifest) if opts.debug: - print("---") - pprint( + print("\n---") + json.dump( { "$type": "zapp", "opts": { k: getattr(opts, k) for k in dir(opts) if not k.startswith("_") }, "manifest": manifest, - } + }, + sys.stdout, + indent=2 ) with open(opts.output, "w") as zapp: