summaryrefslogtreecommitdiff
path: root/compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'compat.py')
-rw-r--r--compat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/compat.py b/compat.py
index 7a5ba06..4a3f07c 100644
--- a/compat.py
+++ b/compat.py
@@ -14,7 +14,7 @@ except:
try:
from collections import OrderedDict
except ImportError:
- from orderddict import OrderedDict # type: ignore
+ from ordereddict import OrderedDict # type: ignore
# to get the right name import ... as ordereddict doesn't do that
class ordereddict(OrderedDict): # type: ignore