Mercurial > hgsubversion
diff svncommand.py @ 242:06130689a2c8
Move push into svncommands.
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Wed, 08 Apr 2009 17:53:48 +0200 |
parents | 4950b18cf949 |
children | 2027f851d60c |
line wrap: on
line diff
--- a/svncommand.py +++ b/svncommand.py @@ -12,11 +12,10 @@ from util import register_subcommand, sv # dirty trick to force demandimport to run my decorator anyway. from svncommands import pull from utility_commands import print_wc_url -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, pull, commit_from_rev, diff_command, rebuildmeta] +__x = [print_wc_url, pull, diff_command, rebuildmeta] def svncmd(ui, repo, subcommand, *args, **opts):