##// END OF EJS Templates
upgrade: drop the prefix to the '_finishdatamigration' function...
Pierre-Yves David -
r31874:27ec6517 default
parent child Browse files
Show More
@@ -487,7 +487,7 def _filterstorefile(srcrepo, dstrepo, r
487
487
488 return True
488 return True
489
489
490 def _upgradefinishdatamigration(ui, srcrepo, dstrepo, requirements):
490 def _finishdatamigration(ui, srcrepo, dstrepo, requirements):
491 """Hook point for extensions to perform additional actions during upgrade.
491 """Hook point for extensions to perform additional actions during upgrade.
492
492
493 This function is called after revlogs and store files have been copied but
493 This function is called after revlogs and store files have been copied but
@@ -534,7 +534,7 def _upgraderepo(ui, srcrepo, dstrepo, r
534 dst = dstrepo.store.vfs.join(p)
534 dst = dstrepo.store.vfs.join(p)
535 util.copyfile(src, dst, copystat=True)
535 util.copyfile(src, dst, copystat=True)
536
536
537 _upgradefinishdatamigration(ui, srcrepo, dstrepo, requirements)
537 _finishdatamigration(ui, srcrepo, dstrepo, requirements)
538
538
539 ui.write(_('data fully migrated to temporary repository\n'))
539 ui.write(_('data fully migrated to temporary repository\n'))
540
540
General Comments 0
You need to be logged in to leave comments. Login now