# HG changeset patch # User Luke Opperman # Date 1239719529 18000 # Node ID a5f20358f7374e19237408611b0acf8189329cc5 # Parent 9f0738587f943255bb36c15251341f0ee3b3f70b Remove stray prints diff --git a/svnwrap/svn_swig_wrapper.py b/svnwrap/svn_swig_wrapper.py --- a/svnwrap/svn_swig_wrapper.py +++ b/svnwrap/svn_swig_wrapper.py @@ -351,14 +351,10 @@ class SubversionRepo(object): if action == 'modify': baton = editor.open_file(path, parent, base_revision, pool) elif action == 'add': - try: - frompath, fromrev = copies.get(path, (None, -1)) - if frompath: - frompath = self.svn_url + '/' + frompath - baton = editor.add_file(path, parent, frompath, fromrev, pool) - except (core.SubversionException, TypeError), e: #pragma: no cover - print e.message - raise + frompath, fromrev = copies.get(path, (None, -1)) + if frompath: + frompath = self.svn_url + '/' + frompath + baton = editor.add_file(path, parent, frompath, fromrev, pool) elif action == 'delete': baton = editor.delete_entry(path, base_revision, parent, pool) compute_delta = False diff --git a/wrappers.py b/wrappers.py --- a/wrappers.py +++ b/wrappers.py @@ -110,7 +110,6 @@ def push(orig, ui, repo, dest=None, *arg ui.status('No revisions to push.') return 0 while outgoing: - print [node.hex(x) for x in outgoing] oldest = outgoing.pop(-1) old_ctx = repo[oldest] if len(old_ctx.parents()) != 1: