]> git.decadent.org.uk Git - dak.git/commitdiff
Less whitspace between hash and size in output. [ajt]
authorJames Troup <james@nocrew.org>
Sat, 20 May 2006 23:55:38 +0000 (18:55 -0500)
committerJames Troup <james@nocrew.org>
Sat, 20 May 2006 23:55:38 +0000 (18:55 -0500)
dak/generate_releases.py

index 9e9b5f0e42d786277c432846067cd7850e0de710..95b36b1f1f7dfa840eaefa0bd2a8128ad02e4075 100755 (executable)
@@ -110,7 +110,7 @@ def print_md5sha_files (tree, files, hashop):
         else:
            hash = hashop(file_handle)
            file_handle.close()
-           out.write(" %s         %8d %s\n" % (hash, size, name))
+           out.write(" %s %8d %s\n" % (hash, size, name))
 
 def print_md5_files (tree, files):
     print_md5sha_files (tree, files, apt_pkg.md5sum)