From 382f9d5d611d17c1ffa1fd5e729e811dde4f347e Mon Sep 17 00:00:00 2001 From: Chris Lamb Date: Wed, 28 Oct 2009 19:51:41 +0000 Subject: [PATCH] Aw, [] can't take *args/**kwargs things. Signed-off-by: Chris Lamb --- daklib/queue.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/daklib/queue.py b/daklib/queue.py index ff1c51d1..03b5e6b9 100755 --- a/daklib/queue.py +++ b/daklib/queue.py @@ -1269,7 +1269,9 @@ class Upload(object): def log(*txt): if self.logger: - self.logger.log([self.pkg.changes_file, "check_lintian", *txt]) + args = [self.pkg.changes_file, "check_lintian"] + args.extend(txt) + self.logger.log(args) # We have output of lintian, this package isn't clean. Lets parse it and see if we # are having a victim for a reject. -- 2.39.2