##// 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,6 +243,10 b' class transaction(object):'
243 files = []
243 files = []
244 try:
244 try:
245 for name in filenames:
245 for name in filenames:
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',):
246 self.addbackup(name)
250 self.addbackup(name)
247 files.append(self.opener(name, 'w', atomictemp=True))
251 files.append(self.opener(name, 'w', atomictemp=True))
248 genfunc(*files)
252 genfunc(*files)
General Comments 0
You need to be logged in to leave comments. Login now