##// END OF EJS Templates
transaction: open a file with checkambig=True to avoid file stat ambiguity...
FUJIWARA Katsunori -
r30002:599912a6 default
parent child Browse files
Show More
@@ -48,7 +48,7 b' def _playback(journal, report, opener, v'
48 48 for f, o, _ignore in entries:
49 49 if o or not unlink:
50 50 try:
51 fp = opener(f, 'a')
51 fp = opener(f, 'a', checkambig=True)
52 52 fp.truncate(o)
53 53 fp.close()
54 54 except IOError:
General Comments 0
You need to be logged in to leave comments. Login now