fix pyflakes

This commit is contained in:
Romain Bignon 2011-03-01 13:19:04 +01:00
commit 51246a77c0

View file

@ -18,7 +18,6 @@
import os import os
import sys import sys
import subprocess
import re import re
from weboob.capabilities.account import ICapAccount from weboob.capabilities.account import ICapAccount
@ -144,7 +143,7 @@ class WeboobCfg(ReplApplication):
""" """
try: try:
self.edit_backend(line) self.edit_backend(line)
except KeyError, e: except KeyError:
print >>sys.stderr, 'Error: backend "%s" not found' % line print >>sys.stderr, 'Error: backend "%s" not found' % line
return 1 return 1