提交 382f9d5d 编写于 作者: C Chris Lamb

Aw, [] can't take *args/**kwargs things.

Signed-off-by: NChris Lamb <lamby@debian.org>
上级 b44e01da
......@@ -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.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册