Mercurial > hgsubversion
comparison 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 |
comparison
equal
deleted
inserted
replaced
245:f8e9b74df403 | 246:074f27c68818 |
---|---|
6 from mercurial import node | 6 from mercurial import node |
7 | 7 |
8 import util | 8 import util |
9 from util import register_subcommand, svn_subcommands, generate_help, svn_commands_nourl | 9 from util import register_subcommand, svn_subcommands, generate_help, svn_commands_nourl |
10 # dirty trick to force demandimport to run my decorator anyway. | 10 # dirty trick to force demandimport to run my decorator anyway. |
11 from svncommands import pull, diff | 11 from svncommands import pull, diff, rebuildmeta |
12 from utility_commands import print_wc_url | 12 from utility_commands import print_wc_url |
13 from rebuildmeta import rebuildmeta | |
14 # shut up, pyflakes, we must import those | 13 # shut up, pyflakes, we must import those |
15 __x = [print_wc_url, pull, diff, rebuildmeta] | 14 __x = [print_wc_url, pull, diff, rebuildmeta] |
16 | 15 |
17 | 16 |
18 def svncmd(ui, repo, subcommand, *args, **opts): | 17 def svncmd(ui, repo, subcommand, *args, **opts): |