From 33329823c89d22f1311246fa536ba1dd252a8b2a Mon Sep 17 00:00:00 2001 From: Guido Guenther Date: Thu, 2 Oct 2008 11:15:00 +0200 Subject: remove superflous printout --- gbp/deb_utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'gbp') diff --git a/gbp/deb_utils.py b/gbp/deb_utils.py index a9bd1fb..a39ec9c 100644 --- a/gbp/deb_utils.py +++ b/gbp/deb_utils.py @@ -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 -- cgit v1.2.3