diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-05-29 20:59:52 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-05-29 20:59:52 +0200 |
commit | 06bc11635102106fcd9946ceaf0fd8ebd93fc4dd (patch) | |
tree | 56b5dc51c791d44727b2e5dcd2e07fd50129d649 | |
parent | 47495365bc219e90ce54314a4b8b92875de8a9a9 (diff) | |
download | gemato-06bc11635102106fcd9946ceaf0fd8ebd93fc4dd.tar.gz |
Remove leftover debug prints
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | gemato/openpgp.py | 3 | ||||
-rw-r--r-- | tests/test_openpgp.py | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/gemato/openpgp.py b/gemato/openpgp.py index 483e15f..3f659fa 100644 --- a/gemato/openpgp.py +++ b/gemato/openpgp.py @@ -435,9 +435,6 @@ resolver-timeout {gpg_timeout} connect-timeout {gpg_timeout} """) - with open(os.path.join(self._home, 'dirmngr.conf'), 'r') as f: - print(f.read()) - with open(os.path.join(self._home, 'gpg.conf'), 'w') as f: f.write('''# autogenerated by gemato diff --git a/tests/test_openpgp.py b/tests/test_openpgp.py index 0c43fc6..51b6445 100644 --- a/tests/test_openpgp.py +++ b/tests/test_openpgp.py @@ -510,7 +510,7 @@ def test_verify_manifest(openpgp_env, manifest_var, key_var, expected): with io.BytesIO(globals()[key_var]) as kf: openpgp_env.import_key(kf) - print(openpgp_env.verify_file(f)) + openpgp_env.verify_file(f) except OpenPGPNoImplementation as e: pytest.skip(str(e)) |