fix pyflakes issues

This commit is contained in:
Romain Bignon 2014-12-07 16:27:27 +01:00
commit a8455d4376
2 changed files with 1 additions and 2 deletions

View file

@ -302,7 +302,7 @@ class TableElement(ListElement):
self._cols[name] = colnum
try:
colnum += int(el.attrib.get('colspan', 1))
except (ValueError, AttributeError) as e:
except (ValueError, AttributeError):
colnum += 1
def get_colnum(self, name):