##// 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 files = []
270 files = []
271 try:
271 try:
272 for name in filenames:
272 for name in filenames:
273 # Some files are already backed up when creating the
273 self.addbackup(name, location=location)
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)
278 files.append(vfs(name, 'w', atomictemp=True))
274 files.append(vfs(name, 'w', atomictemp=True))
279 genfunc(*files)
275 genfunc(*files)
280 finally:
276 finally:
General Comments 0
You need to be logged in to leave comments. Login now