From c09cc0a9c6eb0ced233809010e18bafc4e36f047 Mon Sep 17 00:00:00 2001 From: Thomas Leonard Date: Sun, 11 May 2008 15:31:07 +0100 Subject: [PATCH] Fixed typo in log format string. Reported by Justus Winter. --- validator.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validator.py b/validator.py index 535a908..60dfac0 100644 --- a/validator.py +++ b/validator.py @@ -70,7 +70,7 @@ def check(data, warnings = True): except InvalidInterface, ex: raise except Exception, ex: - warn("Internal error", ex) + warn("Internal error: %s", ex) raise InvalidInterface(str(ex)) finally: os.unlink(tmp_name) -- 2.11.4.GIT