]> git.decadent.org.uk Git - dak.git/commitdiff
shutup
authorJoerg Jaspert <joerg@debian.org>
Sat, 3 Mar 2012 14:51:23 +0000 (15:51 +0100)
committerJoerg Jaspert <joerg@debian.org>
Sat, 3 Mar 2012 14:51:23 +0000 (15:51 +0100)
Signed-off-by: Joerg Jaspert <joerg@debian.org>
dak/generate_index_diffs.py

index cfe85f1797a6a819cda4aa2e6a9840c730d730a3..e3699a461515f4f1ba12b111d72833e400493c7b 100755 (executable)
@@ -232,7 +232,7 @@ def genchanges(Options, outdir, oldfile, origfile, maxdiffs = 56):
         return
 
     if oldstat[1:3] == origstat[1:3]:
-        print "%s: hardlink unbroken, assuming unchanged" % (origfile)
+        #print "%s: hardlink unbroken, assuming unchanged" % (origfile)
         return
 
     oldf = smartopen(oldfile)
@@ -256,14 +256,13 @@ def genchanges(Options, outdir, oldfile, origfile, maxdiffs = 56):
     if newsizesha1 == oldsizesha1:
         os.unlink(newfile)
         oldf.close()
-        print "%s: unchanged" % (origfile)
+        #print "%s: unchanged" % (origfile)
     else:
         if not os.path.isdir(outdir):
             os.mkdir(outdir)
 
         w = os.popen("diff --ed - %s | gzip --rsyncable -c -9 > %s.gz" %
                      (newfile, difffile), "w")
-        print "pipe, o: %s, w: %s" % (oldf, w)
         pipe_file(oldf, w)
         oldf.close()