From: Chris Lamb Date: Thu, 29 Oct 2009 19:03:43 +0000 (+0000) Subject: Join is str.join, not list.join X-Git-Url: https://git.decadent.org.uk/gitweb/?p=dak.git;a=commitdiff_plain;h=39461f21db3fd95187f2c6812d127fe3875158fb Join is str.join, not list.join Signed-off-by: Chris Lamb --- diff --git a/dak/process_new.py b/dak/process_new.py index 9a6c8e33..0b60927d 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" + upload.rejects.join("\n"), + print "REJECT\n" + '\n'.join(upload.rejects) prompt = "[R]eject, Skip, Quit ?" while prompt.find(answer) == -1: