From 5a4fc833dec01ea9ed37a1d087e7254f4f7ffeef Mon Sep 17 00:00:00 2001 From: calvin Date: Mon, 23 Aug 2004 21:34:02 +0000 Subject: [PATCH] fix logger creation git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1459 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- linkchecker | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/linkchecker b/linkchecker index 0768a15b..89b895ee 100755 --- a/linkchecker +++ b/linkchecker @@ -392,12 +392,12 @@ if options.fileoutput: except ValueError: pass if linkcheck.Loggers.has_key(ftype): - config['fileoutput'].append(config.newLogger(ftype, ns)) + config['fileoutput'].append(config.logger_new(ftype, **ns)) else: printUsage(_("Illegal argument %r for option %s") % \ (ftype, "'-F, --file-output'")) if not options.output: - config['log'] = config.newLogger('none') + config['log'] = config.logger_new('none') if options.interactive is not None: config['interactive'] = options.interactive if options.intern: