##// END OF EJS Templates
transaction: avoid ambiguity of file stat at closing transaction...
FUJIWARA Katsunori -
r29299:76b07a5c default
parent child Browse files
Show More
@@ -310,7 +310,8 b' class transaction(object):'
310 310 self.registertmp(name, location=location)
311 311 else:
312 312 self.addbackup(name, location=location)
313 files.append(vfs(name, 'w', atomictemp=True))
313 files.append(vfs(name, 'w', atomictemp=True,
314 checkambig=not suffix))
314 315 genfunc(*files)
315 316 finally:
316 317 for f in files:
General Comments 0
You need to be logged in to leave comments. Login now