From: Chris Lamb Date: Tue, 27 Oct 2009 19:53:15 +0000 (+0000) Subject: Actually add a seperator to our --tags-from-file input. X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=d5df400a942e5aeace62d9860d0510d14c3e036f;hp=ce324ffde27b192a8e713b6e98368a3b00edaf27;p=dak.git Actually add a seperator to our --tags-from-file input. Signed-off-by: Chris Lamb --- diff --git a/daklib/queue.py b/daklib/queue.py index 35b85a7d..efa4eaba 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -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()