Mercurial > hgsubversion
comparison 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 |
comparison
equal
deleted
inserted
replaced
240:1aa1d2d406d9 | 241:4950b18cf949 |
---|---|
8 | 8 |
9 import svnwrap | 9 import svnwrap |
10 import util | 10 import util |
11 from util import register_subcommand, svn_subcommands, generate_help, svn_commands_nourl | 11 from util import register_subcommand, svn_subcommands, generate_help, svn_commands_nourl |
12 # dirty trick to force demandimport to run my decorator anyway. | 12 # dirty trick to force demandimport to run my decorator anyway. |
13 from svncommands import pull | |
13 from utility_commands import print_wc_url | 14 from utility_commands import print_wc_url |
14 from fetch_command import fetch_revisions | |
15 from push_cmd import commit_from_rev | 15 from push_cmd import commit_from_rev |
16 from diff_cmd import diff_command | 16 from diff_cmd import diff_command |
17 from rebuildmeta import rebuildmeta | 17 from rebuildmeta import rebuildmeta |
18 # shut up, pyflakes, we must import those | 18 # shut up, pyflakes, we must import those |
19 __x = [print_wc_url, fetch_revisions, commit_from_rev, diff_command, rebuildmeta] | 19 __x = [print_wc_url, pull, commit_from_rev, diff_command, rebuildmeta] |
20 | 20 |
21 | 21 |
22 def svncmd(ui, repo, subcommand, *args, **opts): | 22 def svncmd(ui, repo, subcommand, *args, **opts): |
23 if subcommand not in svn_subcommands: | 23 if subcommand not in svn_subcommands: |
24 candidates = [] | 24 candidates = [] |