mercurial/wireproto.py
changeset 29341 0d83ad967bf8
parent 29216 ead25aa27a43
child 29590 84c1a5942f1d
--- a/mercurial/wireproto.py	Fri Jun 10 00:25:07 2016 -0400
+++ b/mercurial/wireproto.py	Fri Jun 10 00:12:33 2016 -0400
@@ -7,6 +7,7 @@
 
 from __future__ import absolute_import
 
+import hashlib
 import itertools
 import os
 import sys
@@ -410,7 +411,7 @@
 
         if heads != ['force'] and self.capable('unbundlehash'):
             heads = encodelist(['hashed',
-                                util.sha1(''.join(sorted(heads))).digest()])
+                                hashlib.sha1(''.join(sorted(heads))).digest()])
         else:
             heads = encodelist(heads)