projects
/
tools
/
git-buildpackage.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b1a2847
)
remove superflous printout
author
Guido Guenther
<agx@sigxcpu.org>
Thu, 2 Oct 2008 09:15:00 +0000
(11:15 +0200)
committer
Guido Guenther
<agx@sigxcpu.org>
Thu, 2 Oct 2008 09:19:59 +0000
(11:19 +0200)
gbp/deb_utils.py
patch
|
blob
|
history
diff --git
a/gbp/deb_utils.py
b/gbp/deb_utils.py
index a9bd1fbcf64188b96ae3f0ea771b0896ff00bde9..a39ec9cda7cf740242d5d0997bf469fee6a5a49a 100644
(file)
--- 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 err
r
or 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