diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-11-24 17:09:23 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2012-11-24 17:09:23 +0000 |
commit | 3654c9606c2956b3466f4655670502f295a7d3de (patch) | |
tree | 4c873d38230533d355cf705f74a42716f53aa12a | |
parent | 620d48ceb23a659d57ddc168ec8e3db453990983 (diff) |
comment out debug prints
svn path=/trunk/; revision=16570
-rwxr-xr-x | scripts/auto-build/create-latest-build-listing.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/auto-build/create-latest-build-listing.py b/scripts/auto-build/create-latest-build-listing.py index 571edb55..c9d0172d 100755 --- a/scripts/auto-build/create-latest-build-listing.py +++ b/scripts/auto-build/create-latest-build-listing.py @@ -48,9 +48,9 @@ if len(sourcetarballs) > 0: except Exception, e: pass try: - print 'os.symlink(' + sourcetarball + ', ' + linkname + ')' + #print 'os.symlink(' + sourcetarball + ', ' + linkname + ')' os.symlink(sourcetarball, linkname) - print 'os.symlink(' + debiantarball + ', ' + debianlinkname + ')' + #print 'os.symlink(' + debiantarball + ', ' + debianlinkname + ')' os.symlink(debiantarball, debianlinkname) foundsourcetarball = True except Exception, e: |