From 036d8be9d09c82edfe7e5b95b72c362cd723a2e8 Mon Sep 17 00:00:00 2001 From: "Adam D. Barratt" Date: Thu, 27 Oct 2011 20:50:12 +0000 Subject: [PATCH] Don't try to call __log on a non-existent class Signed-off-by: Adam D. Barratt --- britney.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/britney.py b/britney.py index 5af9558..0d7f000 100755 --- a/britney.py +++ b/britney.py @@ -342,7 +342,7 @@ class Britney: # integrity checks if self.options.nuninst_cache and self.options.print_uninst: - exit.__log("nuninst_cache and print_uninst are mutually exclusive!", type="E") + self.__log("nuninst_cache and print_uninst are mutually exclusive!", type="E") sys.exit(1) # if the configuration file exists, than read it and set the additional options elif not os.path.isfile(self.options.config):