Skip to content
Snippets Groups Projects
Commit 4696938d authored by Gregory Szorc's avatar Gregory Szorc
Browse files

bundlerepo: rename arguments to bundlerepository.__init__

To reflect what they actually are.

Differential Revision: https://phab.mercurial-scm.org/D1374
parent 80e9b85d
No related branches found
No related tags found
No related merge requests found
......@@ -256,6 +256,6 @@
return bundlefilespos
class bundlerepository(localrepo.localrepository):
def __init__(self, ui, path, bundlename):
def __init__(self, ui, repopath, bundlepath):
self._tempparent = None
try:
......@@ -260,9 +260,9 @@
self._tempparent = None
try:
localrepo.localrepository.__init__(self, ui, path)
localrepo.localrepository.__init__(self, ui, repopath)
except error.RepoError:
self._tempparent = tempfile.mkdtemp()
localrepo.instance(ui, self._tempparent, 1)
localrepo.localrepository.__init__(self, ui, self._tempparent)
self.ui.setconfig('phases', 'publish', False, 'bundlerepo')
......@@ -263,9 +263,9 @@
except error.RepoError:
self._tempparent = tempfile.mkdtemp()
localrepo.instance(ui, self._tempparent, 1)
localrepo.localrepository.__init__(self, ui, self._tempparent)
self.ui.setconfig('phases', 'publish', False, 'bundlerepo')
if path:
self._url = 'bundle:' + util.expandpath(path) + '+' + bundlename
if repopath:
self._url = 'bundle:' + util.expandpath(repopath) + '+' + bundlepath
else:
......@@ -271,4 +271,4 @@
else:
self._url = 'bundle:' + bundlename
self._url = 'bundle:' + bundlepath
self.tempfile = None
......@@ -273,7 +273,7 @@
self.tempfile = None
f = util.posixfile(bundlename, "rb")
self.bundlefile = self.bundle = exchange.readbundle(ui, f, bundlename)
f = util.posixfile(bundlepath, "rb")
self.bundlefile = self.bundle = exchange.readbundle(ui, f, bundlepath)
if isinstance(self.bundle, bundle2.unbundle20):
hadchangegroup = False
......@@ -293,7 +293,7 @@
f = self._writetempbundle(self.bundle.read, '.hg10un',
header='HG10UN')
self.bundlefile = self.bundle = exchange.readbundle(ui, f,
bundlename,
bundlepath,
self.vfs)
# dict with the mapping 'filename' -> position in the bundle
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment