Fix simple typo: ussually -> usually

Closes #373
This commit is contained in:
Tim Gates
2020-03-01 06:45:21 +11:00
parent dc82965d66
commit 29a0f501a5
+1 -1
View File
@@ -395,7 +395,7 @@ class Element(BaseParser):
if self._attrs is None:
self._attrs = {k: v for k, v in self.element.items()}
# Split class and rel up, as there are ussually many of them:
# Split class and rel up, as there are usually many of them:
for attr in ['class', 'rel']:
if attr in self._attrs:
self._attrs[attr] = tuple(self._attrs[attr].split())