##// END OF EJS Templates
largefiles: remove pycompat.iteritems()...
Gregory Szorc -
r49771:bac59722 default
parent child Browse files
Show More
@@ -10,7 +10,6 b' from mercurial.i18n import _'
10
10
11 from mercurial import (
11 from mercurial import (
12 error,
12 error,
13 pycompat,
14 util,
13 util,
15 )
14 )
16
15
@@ -52,9 +51,8 b' class remotestore(basestore.basestore):'
52 def exists(self, hashes):
51 def exists(self, hashes):
53 return {
52 return {
54 h: s == 0
53 h: s == 0
55 for (h, s) in pycompat.iteritems(
54 for (h, s) in self._stat(hashes).items()
56 self._stat(hashes)
55 # dict-from-generator
57 ) # dict-from-generator
58 }
56 }
59
57
60 def sendfile(self, filename, hash):
58 def sendfile(self, filename, hash):
General Comments 0
You need to be logged in to leave comments. Login now