changeset 494:6eea269ff134

stupid: remove stray print statements, keep one as a ui.debug
author Augie Fackler <durin42@gmail.com>
date Wed, 07 Oct 2009 19:05:01 -0400
parents 41c333473dda
children 44bde69b6c49
files hgsubversion/stupid.py
diffstat 1 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/hgsubversion/stupid.py
+++ b/hgsubversion/stupid.py
@@ -551,7 +551,6 @@ def convert_rev(ui, meta, svn, r, tbdelt
     for b in branches:
 
         parentctx = meta.repo[meta.get_parent_revision(r.revnum, b)]
-        print parentctx
         if parentctx.branch() != (b or 'default'):
             check_deleted_branches.add(b)
 
@@ -593,7 +592,7 @@ def convert_rev(ui, meta, svn, r, tbdelt
             files_touched.remove(f)
 
         if parentctx.node() == node.nullid and not files_touched:
-            print 'skipping commit since parent is null and no files touched.'
+            meta.repo.ui.debug('skipping commit since parent is null and no files touched.\n')
             continue
 
         for f in files_touched:
@@ -629,7 +628,6 @@ def convert_rev(ui, meta, svn, r, tbdelt
         if not tag:
             if (not branch in meta.branches
                 and not meta.is_path_tag(meta.remotename(branch))):
-                print tag, 'madebranch', branch
                 meta.branches[branch] = None, 0, r.revnum
             meta.revmap[r.revnum, b] = ha
         else: