From d5df400a942e5aeace62d9860d0510d14c3e036f Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Tue, 27 Oct 2009 19:53:15 +0000 Subject: [PATCH 1/1] Actually add a seperator to our --tags-from-file input. Signed-off-by: Chris Lamb --- daklib/queue.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.39.2