Skip to content

Commit

Permalink
Manifest.digest static method was renamed
Browse files Browse the repository at this point in the history
Static method Manifest.digest was renamed to
Manfiest.calculate_digest in the mongoengine
conversion

closes #1672
https://pulp.plan.io/issues/1672
  • Loading branch information
pcreech committed Feb 16, 2016
1 parent 21d59a7 commit a91a072
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/pulp_docker/plugins/registry.py
Expand Up @@ -376,7 +376,7 @@ def get_manifest(self, reference):
msg = msg.format(e=expected_digest, d=digest)
raise IOError(msg)
else:
digest = models.Manifest.digest(manifest)
digest = models.Manifest.calculate_digest(manifest)
return digest, manifest

def get_tags(self):
Expand Down

0 comments on commit a91a072

Please sign in to comment.