From 9dec8a1dafff4618581cbb2447c6624e17ee56e0 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Thu, 23 Oct 2014 18:28:42 -0400 Subject: [PATCH] Fix log message if Dates is missing. --- britney.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/britney.py b/britney.py index 1f01087..9a2126e 100755 --- a/britney.py +++ b/britney.py @@ -760,7 +760,8 @@ class Britney(object): except ValueError: self.__log("Dates, unable to parse \"%s\"" % line, type="E") except IOError: - self.__log("%s missing; initialising upload data from scratch") + self.__log("%s missing; initialising upload data from scratch" % + filename) return dates def write_dates(self, basedir, dates):