]> git.decadent.org.uk Git - dak.git/commitdiff
Actually add a seperator to our --tags-from-file input.
authorChris Lamb <lamby@debian.org>
Tue, 27 Oct 2009 19:53:15 +0000 (19:53 +0000)
committerChris Lamb <lamby@debian.org>
Tue, 27 Oct 2009 20:01:31 +0000 (20:01 +0000)
Signed-off-by: Chris Lamb <lamby@debian.org>
daklib/queue.py

index 35b85a7de7c61a3d044bf3c59303eddd19682c08..efa4eaba20ee2b8e9666cf67ce2f28b0fef3c5f1 100755 (executable)
@@ -1232,7 +1232,7 @@ class Upload(object):
         temptagfile = os.fdopen(fd, 'w')
         for tagtype in lintiantags:
             for tag in lintiantags[tagtype]:
-                temptagfile.write(tag)
+                temptagfile.write("%s\n" % tag)
                 tags.add(tag)
         temptagfile.close()