Mercurial > hgsubversion
diff svncommand.py @ 246:074f27c68818
Move rebuildmeta into svncommands.
author | Dirkjan Ochtman <dirkjan@ochtman.nl> |
---|---|
date | Wed, 08 Apr 2009 18:49:44 +0200 |
parents | 28d0ee605308 |
children | 1272e87546ed |
line wrap: on
line diff
--- a/svncommand.py +++ b/svncommand.py @@ -8,9 +8,8 @@ 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, diff +from svncommands import pull, diff, rebuildmeta from utility_commands import print_wc_url -from rebuildmeta import rebuildmeta # shut up, pyflakes, we must import those __x = [print_wc_url, pull, diff, rebuildmeta]