From: Chris Lamb Date: Thu, 29 Oct 2009 19:04:09 +0000 (+0000) Subject: Prefer interpolation over concatenation. X-Git-Url: https://git.decadent.org.uk/gitweb/?a=commitdiff_plain;h=5129cccfaaf32cc2ab085f02d2eeec8be25a82cb;hp=39461f21db3fd95187f2c6812d127fe3875158fb;p=dak.git Prefer interpolation over concatenation. Signed-off-by: Chris Lamb --- diff --git a/dak/process_new.py b/dak/process_new.py index 0b60927d..5d7ffaaa 100755 --- a/dak/process_new.py +++ b/dak/process_new.py @@ -113,7 +113,7 @@ def recheck(upload, session): if Options["No-Action"] or Options["Automatic"] or Options["Trainee"]: answer = 'S' - print "REJECT\n" + '\n'.join(upload.rejects) + print "REJECT\n%s" % '\n'.join(upload.rejects) prompt = "[R]eject, Skip, Quit ?" while prompt.find(answer) == -1: