Mercurial > hgsubversion
diff svncommand.py @ 244:28d0ee605308
Move diff to svncommands.
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Wed, 08 Apr 2009 18:21:47 +0200 |
parents | 2027f851d60c |
children | 074f27c68818 |
line wrap: on
line diff
--- a/svncommand.py +++ b/svncommand.py @@ -8,12 +8,11 @@ from mercurial import node 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 svncommands import pull, diff from utility_commands import print_wc_url -from diff_cmd import diff_command from rebuildmeta import rebuildmeta # shut up, pyflakes, we must import those -__x = [print_wc_url, pull, diff_command, rebuildmeta] +__x = [print_wc_url, pull, diff, rebuildmeta] def svncmd(ui, repo, subcommand, *args, **opts):