From a1acde1f02450cdd8e42b251deab6428d3bc6032 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Tue, 17 Jan 2012 20:51:42 +0000 Subject: [PATCH] Use log.critical instead of log.fatal (which does not exist). Signed-off-by: James McCoy --- scripts/supybot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/supybot b/scripts/supybot index ebd85e3f7..83c1eefe4 100644 --- a/scripts/supybot +++ b/scripts/supybot @@ -303,7 +303,7 @@ if __name__ == '__main__': log.error('Could not remove pid file: %s', e) atexit.register(removePidFile) except EnvironmentError, e: - log.fatal('Error opening/writing pid file %s: %s', pidFile, e) + log.critical('Error opening/writing pid file %s: %s', pidFile, e) sys.exit(-1) conf.allowDefaultOwner = options.allowDefaultOwner