# HG changeset patch # User Matt Mackall # Date 1328052337 21600 # Node ID 4b7aa1c899dcaaef108aa5ee0b47a87769dbf07f # Parent 6a959318c58ed8fc8d87f799bfe4ebf477a86c85 bundlerepo: try to find containing repo on creation (issue1812) diff -r 6a959318c58e -r 4b7aa1c899dc mercurial/bundlerepo.py --- a/mercurial/bundlerepo.py Mon Jan 30 16:37:15 2012 -0600 +++ b/mercurial/bundlerepo.py Tue Jan 31 17:25:37 2012 -0600 @@ -14,7 +14,7 @@ from node import nullid from i18n import _ import os, tempfile, shutil -import changegroup, util, mdiff, discovery +import changegroup, util, mdiff, discovery, cmdutil import localrepo, changelog, manifest, filelog, revlog, error class bundlerevlog(revlog.revlog): @@ -274,6 +274,11 @@ if create: raise util.Abort(_('cannot create new bundle repository')) parentpath = ui.config("bundle", "mainreporoot", "") + if not parentpath: + # try to find the correct path to the working directory repo + parentpath = cmdutil.findrepo(os.getcwd()) + if parentpath is None: + parentpath = '' if parentpath: # Try to make the full path relative so we get a nice, short URL. # In particular, we don't want temp dir names in test outputs.