Mercurial > hgsubversion
diff svncommand.py @ 241:4950b18cf949
Move fetch_command.fetch_revisions() to svncommands.pull().
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Wed, 08 Apr 2009 17:49:30 +0200 |
parents | 1aa1d2d406d9 |
children | 06130689a2c8 |
line wrap: on
line diff
--- a/svncommand.py +++ b/svncommand.py @@ -10,13 +10,13 @@ import svnwrap import util from util import register_subcommand, svn_subcommands, generate_help, svn_commands_nourl # dirty trick to force demandimport to run my decorator anyway. +from svncommands import pull from utility_commands import print_wc_url -from fetch_command import fetch_revisions from push_cmd import commit_from_rev from diff_cmd import diff_command from rebuildmeta import rebuildmeta # shut up, pyflakes, we must import those -__x = [print_wc_url, fetch_revisions, commit_from_rev, diff_command, rebuildmeta] +__x = [print_wc_url, pull, commit_from_rev, diff_command, rebuildmeta] def svncmd(ui, repo, subcommand, *args, **opts):