# HG changeset patch # User Jamie Clayton # Date 1362907955 -36000 # Node ID 8045ebda705ae257dfad708ca8109d8a82ef14f8 # Parent c8cb06e1f3233c2f8a072faed1474bac17321590 Improve UX. Update the implicit Path name for working with SVN repositories. diff --git a/hgsubversion/svnrepo.py b/hgsubversion/svnrepo.py --- a/hgsubversion/svnrepo.py +++ b/hgsubversion/svnrepo.py @@ -122,7 +122,7 @@ class svnremoterepo(peerrepository): if path is None: path = self.ui.config('paths', 'default') if not path: - raise hgutil.Abort('no Subversion URL specified') + raise hgutil.Abort('no Subversion URL specified. Expect[path] default= or [path] default-push= SVN URL entries in hgrc.') self.path = path self.capabilities = set(['lookup', 'subversion']) pws = self.ui.config('hgsubversion', 'password_stores', None)