try/except import are now handled by flake8 2.0+ / pyflakes 0.6+

This commit is contained in:
Laurent Bachelier 2013-03-18 21:15:44 +01:00 committed by Florent
commit be3e19a203
14 changed files with 17 additions and 17 deletions

View file

@ -25,7 +25,7 @@ from logging import warning, debug
try:
from urlparse import parse_qs
except ImportError:
from cgi import parse_qs # NOQA
from cgi import parse_qs
from weboob.tools.misc import html2text, get_bytes_size
from weboob.capabilities.torrent import Torrent