Mercurial > hgsubversion
diff utility_commands.py @ 157:91541523ea5c
utility_commands: Test outgoing and fix it to work again.
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Wed, 24 Dec 2008 11:12:23 -0600 |
parents | 1fde85a10f9e |
children | 7a5a0b5c8e34 |
line wrap: on
line diff
--- a/utility_commands.py +++ b/utility_commands.py @@ -135,7 +135,7 @@ def show_outgoing_to_svn(ui, repo, hg_re ui_=ui) svn_commit_hashes = dict(zip(hge.revmap.itervalues(), hge.revmap.iterkeys())) - o_r = util.outgoing_revisions(ui, repo, hge, svn_commit_hashes, repo.parents()[0]) + o_r = util.outgoing_revisions(ui, repo, hge, svn_commit_hashes, repo.parents()[0].node()) if not (o_r and len(o_r)): ui.status('No outgoing changes found.\n') return 0