# HG changeset patch # User Augie Fackler # Date 1239557120 18000 # Node ID 3b3627611468f28bc3f171ce1971e5cc8d8784f7 # Parent 141513b5173b595444f0fc906480c71534facf9c Fix pushing after 141513b. diff --git a/wrappers.py b/wrappers.py --- 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