Show More
@@ -243,7 +243,11 class transaction(object): | |||||
243 | files = [] |
|
243 | files = [] | |
244 | try: |
|
244 | try: | |
245 | for name in filenames: |
|
245 | for name in filenames: | |
246 |
|
|
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 | files.append(self.opener(name, 'w', atomictemp=True)) |
|
251 | files.append(self.opener(name, 'w', atomictemp=True)) | |
248 | genfunc(*files) |
|
252 | genfunc(*files) | |
249 | finally: |
|
253 | finally: |
General Comments 0
You need to be logged in to leave comments.
Login now