From 9336be8d7dee4c0ae06748a68d2e2c60d9394972 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Tue, 23 Feb 2010 21:22:13 +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