##// END OF EJS Templates
revlog: fix bad indentation (replace tab by space)
Martin von Zweigbergk -
r27441:e47841c8 stable
parent child Browse files
Show More
@@ -1438,7 +1438,7 b' class revlog(object):'
1438 # We work around this issue by inserting a seek() before writing.
1438 # We work around this issue by inserting a seek() before writing.
1439 # Note: This is likely not necessary on Python 3.
1439 # Note: This is likely not necessary on Python 3.
1440 ifh.seek(0, os.SEEK_END)
1440 ifh.seek(0, os.SEEK_END)
1441 if dfh:
1441 if dfh:
1442 dfh.seek(0, os.SEEK_END)
1442 dfh.seek(0, os.SEEK_END)
1443
1443
1444 curr = len(self) - 1
1444 curr = len(self) - 1
General Comments 0
You need to be logged in to leave comments. Login now