summaryrefslogtreecommitdiff
path: root/compat.py
diff options
context:
space:
mode:
authorAnthon van der Neut <anthon@mnt.org>2017-01-19 00:03:40 +0100
committerAnthon van der Neut <anthon@mnt.org>2017-01-19 00:03:40 +0100
commit2b95b3766e9707635cef87756e5ea321660cd22d (patch)
tree061fcdf1ed47f867f152f5054ed862dca365122f /compat.py
parent15c7c27f3c39af88b43122d5ddb8907ce5392ecb (diff)
downloadruamel.yaml-2b95b3766e9707635cef87756e5ea321660cd22d.tar.gz
fix #92: typo in import0.13.9
reported by the-corinthian
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