Mercurial > hgsubversion
comparison wrappers.py @ 266:a5f20358f737
Remove stray prints
author | Luke Opperman <luke@loppear.com> |
---|---|
date | Tue, 14 Apr 2009 09:32:09 -0500 |
parents | 9f0738587f94 |
children | f000b2392fc2 |
comparison
equal
deleted
inserted
replaced
265:9f0738587f94 | 266:a5f20358f737 |
---|---|
108 outgoing = util.outgoing_revisions(ui, repo, hge, svn_commit_hashes, workingrev.node()) | 108 outgoing = util.outgoing_revisions(ui, repo, hge, svn_commit_hashes, workingrev.node()) |
109 if not (outgoing and len(outgoing)): | 109 if not (outgoing and len(outgoing)): |
110 ui.status('No revisions to push.') | 110 ui.status('No revisions to push.') |
111 return 0 | 111 return 0 |
112 while outgoing: | 112 while outgoing: |
113 print [node.hex(x) for x in outgoing] | |
114 oldest = outgoing.pop(-1) | 113 oldest = outgoing.pop(-1) |
115 old_ctx = repo[oldest] | 114 old_ctx = repo[oldest] |
116 if len(old_ctx.parents()) != 1: | 115 if len(old_ctx.parents()) != 1: |
117 ui.status('Found a branch merge, this needs discussion and ' | 116 ui.status('Found a branch merge, this needs discussion and ' |
118 'implementation.') | 117 'implementation.') |