changeset 384:26337d097e18

Remove defunct nourl lists.
author Augie Fackler <durin42@gmail.com>
date Sat, 30 May 2009 15:34:29 -0500
parents 987bd7444f60
children 60b84e2d3336
files hgsubversion/__init__.py hgsubversion/svncommands.py hgsubversion/utility_commands.py
diffstat 3 files changed, 0 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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:
--- 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,
--- 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,