# HG changeset patch # User Augie Fackler # Date 1243715669 18000 # Node ID 26337d097e189e436b6fc54a44b00d95a60b9cc6 # Parent 987bd7444f602e8546f9e526eacb7b2b6a1b43ec Remove defunct nourl lists. diff --git a/hgsubversion/__init__.py b/hgsubversion/__init__.py --- a/hgsubversion/__init__.py +++ b/hgsubversion/__init__.py @@ -156,8 +156,6 @@ def svn(ui, repo, subcommand, *args, **o path = os.path.dirname(repo.path) try: commandfunc = svncommands.table[subcommand] - if subcommand not in svncommands.nourl: - opts['svn_url'] = open(os.path.join(repo.path, 'svn', 'url')).read() return commandfunc(ui, args=args, hg_repo_path=path, repo=repo, **opts) except core.SubversionException, e: if e.apr_err == core.SVN_ERR_RA_SERF_SSL_CERT_UNTRUSTED: diff --git a/hgsubversion/svncommands.py b/hgsubversion/svncommands.py --- a/hgsubversion/svncommands.py +++ b/hgsubversion/svncommands.py @@ -194,7 +194,6 @@ def update(ui, args, repo, clean=False, return 1 -nourl = ['rebuildmeta', 'help'] + utility_commands.nourl table = { 'update': update, 'help': help, diff --git a/hgsubversion/utility_commands.py b/hgsubversion/utility_commands.py --- a/hgsubversion/utility_commands.py +++ b/hgsubversion/utility_commands.py @@ -117,8 +117,6 @@ def version(ui, **opts): ui.status('svn bindings: %s\n' % svnwrap.version()) ui.status('hgsubversion: %s\n' % util.version(ui)) - -nourl = ['version', 'listauthors'] table = { 'genignore': genignore, 'info': info,