remove superflous printout
authorGuido Guenther <agx@sigxcpu.org>
Thu, 2 Oct 2008 09:15:00 +0000 (11:15 +0200)
committerGuido Guenther <agx@sigxcpu.org>
Thu, 2 Oct 2008 09:19:59 +0000 (11:19 +0200)
gbp/deb_utils.py

index a9bd1fbcf64188b96ae3f0ea771b0896ff00bde9..a39ec9cda7cf740242d5d0997bf469fee6a5a49a 100644 (file)
@@ -158,7 +158,7 @@ def symlink_orig(cp, orig_dir, output_dir, force=False):
     """
     symlink orig.tar.gz from orig_dir to output_dir
     @return: True if link was created or src == dst
-             False in case of errror or src doesn't exist
+             False in case of error or src doesn't exist
     """
     orig_dir = os.path.abspath(orig_dir)
     output_dir = os.path.abspath(output_dir)
@@ -173,7 +173,6 @@ def symlink_orig(cp, orig_dir, output_dir, force=False):
     try:
         if os.access(dst, os.F_OK) and force:
             os.unlink(dst)
-        print src, dst
         os.symlink(src, dst)
     except OSError:
         return False