Mercurial > hgsubversion
changeset 262:3b3627611468
Fix pushing after 141513b.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Sun, 12 Apr 2009 12:25:20 -0500 |
parents | 141513b5173b |
children | d978192f0d63 |
files | wrappers.py |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/wrappers.py +++ b/wrappers.py @@ -141,7 +141,8 @@ def push(orig, ui, repo, dest=None, *arg old_ctx) return 1 # 3. Fetch revisions from svn - r = pull(None, ui, repo, True, stupid=opts.get('svn_stupid', False), + # TODO this probably should pass in the source explicitly + r = pull(None, ui, repo, svn=True, stupid=opts.get('svn_stupid', False), username=user, password=passwd) assert not r or r == 0 # 4. Find the new head of the target branch