fix pyflakes errors

This commit is contained in:
Christophe Benz 2010-05-19 11:16:06 +02:00
commit b6f3b39744
4 changed files with 3 additions and 6 deletions

View file

@ -134,7 +134,7 @@ class WeboobCfg(ConsoleApplication):
print u'Backend "%s" successfully added under instance name "%s" to file %s. Please check configuration parameters values.' % (
name, new_name, self.weboob.backends_config.confpath)
break
except ConfigParser.DuplicateSectionError, e:
except ConfigParser.DuplicateSectionError:
print u'Instance "%s" is already configured for backend "%s".' % (new_name, name)
@ConsoleApplication.command('List backends')