From 5937f968fa465b7b955c0f9365bcf34180e8d568 Mon Sep 17 00:00:00 2001 From: Nicolas Dandrimont <nicolas@dandrimont.eu> Date: Mon, 7 Dec 2015 11:41:27 +0100 Subject: [PATCH] identifiers: remove debug prints --- swh/model/identifiers.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/swh/model/identifiers.py b/swh/model/identifiers.py index 6351074a..e44d8940 100644 --- a/swh/model/identifiers.py +++ b/swh/model/identifiers.py @@ -265,7 +265,6 @@ def revision_identifier(revision): revision['message'], ]) - print(b''.join(components).decode('utf-8')) return hashutil.hash_git_data(b''.join(components), 'commit') @@ -295,5 +294,4 @@ def release_identifier(release): components.extend([b'\n', release['message']]) - print(b''.join(components).decode('utf-8')) return hashutil.hash_git_data(b''.join(components), 'tag') -- GitLab