##// END OF EJS Templates
transaction: work around and document issue with file backup...
Pierre-Yves David -
r22662:c4d63f67 default
parent child Browse files
Show More
@@ -243,7 +243,11 b' class transaction(object):'
243 243 files = []
244 244 try:
245 245 for name in filenames:
246 self.addbackup(name)
246 # Some files are already backed up when creating the
247 # localrepo. Until this is properly fixed we disable the
248 # backup for them.
249 if name not in ('phaseroots',):
250 self.addbackup(name)
247 251 files.append(self.opener(name, 'w', atomictemp=True))
248 252 genfunc(*files)
249 253 finally:
General Comments 0
You need to be logged in to leave comments. Login now