diff --git a/swh/model/identifiers.py b/swh/model/identifiers.py index 6351074abd64e9b229c18abb9cb94c3d1bd6b72d..e44d8940e607f0287d06d1e86b6b48c6cc0268e2 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')