From 2b95b3766e9707635cef87756e5ea321660cd22d Mon Sep 17 00:00:00 2001 From: Anthon van der Neut Date: Thu, 19 Jan 2017 00:03:40 +0100 Subject: fix #92: typo in import reported by the-corinthian --- README.rst | 3 +++ __init__.py | 2 +- compat.py | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index d9e6ade..8fc7fd9 100644 --- a/README.rst +++ b/README.rst @@ -18,6 +18,9 @@ ChangeLog .. should insert NEXT: at the beginning of line for next key +0.13.9 (2017-01-18): + - fix for issue 92, wrong import name reported by the-corinthian + 0.13.8 (2017-01-18): - fix for issue 91, when a compiler is unavailable reported by Maximilian Hils - fix for deepcopy issue with TimeStamps not preserving 'T', reported on diff --git a/__init__.py b/__init__.py index 7bbfa43..6c0bb60 100644 --- a/__init__.py +++ b/__init__.py @@ -9,7 +9,7 @@ from __future__ import absolute_import _package_data = dict( full_package_name="ruamel.yaml", - version_info=(0, 13, 8), + version_info=(0, 13, 9), author="Anthon van der Neut", author_email="a.van.der.neut@ruamel.eu", description="ruamel.yaml is a YAML parser/emitter that supports roundtrip preservation of comments, seq/map flow style, and map key order", # NOQA 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 -- cgit v1.2.1