##// END OF EJS Templates
largefiles: use strip() instead of slicing to get rid of EOL of standin...
FUJIWARA Katsunori -
r31658:f1cf6a74 default
parent child Browse files
Show More
@@ -130,7 +130,7 b' class basestore(object):'
130 key = (filename, fctx.filenode())
130 key = (filename, fctx.filenode())
131 if key not in verified:
131 if key not in verified:
132 verified.add(key)
132 verified.add(key)
133 expectedhash = fctx.data()[0:40]
133 expectedhash = fctx.data().strip()
134 filestocheck.append((cset, filename, expectedhash))
134 filestocheck.append((cset, filename, expectedhash))
135
135
136 failed = self._verifyfiles(contents, filestocheck)
136 failed = self._verifyfiles(contents, filestocheck)
General Comments 0
You need to be logged in to leave comments. Login now