From 29a0f501a5285460b2a0b09c44113bbf0afa14f3 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sun, 1 Mar 2020 06:45:21 +1100 Subject: [PATCH] Fix simple typo: ussually -> usually Closes #373 --- requests_html.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requests_html.py b/requests_html.py index be5a5a4..cdc057d 100644 --- a/requests_html.py +++ b/requests_html.py @@ -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())