##// END OF EJS Templates
transaction: drop special handling for phases and bookmarks generation...
Pierre-Yves David -
r23318:fc73293f default
parent child Browse files
Show More
@@ -270,11 +270,7 b' class transaction(object):'
270 270 files = []
271 271 try:
272 272 for name in filenames:
273 # Some files are already backed up when creating the
274 # localrepo. Until this is properly fixed we disable the
275 # backup for them.
276 if name not in ('phaseroots', 'bookmarks'):
277 self.addbackup(name, location=location)
273 self.addbackup(name, location=location)
278 274 files.append(vfs(name, 'w', atomictemp=True))
279 275 genfunc(*files)
280 276 finally:
General Comments 0
You need to be logged in to leave comments. Login now