From 9fc14153a3227548b5c5ce91e8556d640d5eb74a Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Sun, 28 Feb 2010 14:44:36 +0000 Subject: [PATCH] Print a warning about malformed lines in the RC-bug list files Signed-off-by: Adam D. Barratt --- britney.py | 1 + 1 file changed, 1 insertion(+) diff --git a/britney.py b/britney.py index 3136c8c..f264365 100755 --- a/britney.py +++ b/britney.py @@ -564,6 +564,7 @@ class Britney: for line in open(filename): l = line.split() if len(l) != 2: + print "WARNING: Malformed line found in %s: %s" % (file, line) continue bugs[l[0]] = l[1].split(",") return bugs