##// END OF EJS Templates
py3: use pycompat.maplist() in chgserver...
Martin von Zweigbergk -
r43086:0cbe1733 default
parent child Browse files
Show More
@@ -172,7 +172,7 b' def _mtimehash(paths):'
172 except OSError:
172 except OSError:
173 # could be ENOENT, EPERM etc. not fatal in any case
173 # could be ENOENT, EPERM etc. not fatal in any case
174 pass
174 pass
175 return _hashlist(map(trystat, paths))[:12]
175 return _hashlist(pycompat.maplist(trystat, paths))[:12]
176
176
177 class hashstate(object):
177 class hashstate(object):
178 """a structure storing confighash, mtimehash, paths used for mtimehash"""
178 """a structure storing confighash, mtimehash, paths used for mtimehash"""
General Comments 0
You need to be logged in to leave comments. Login now