summaryrefslogtreecommitdiff
path: root/migrate/changeset/schema.py
diff options
context:
space:
mode:
authorChih-Hsuan Yen <yen@chyen.cc>2018-12-03 21:54:01 +0800
committerMatt Riedemann <mriedem.os@gmail.com>2019-01-15 18:16:06 +0000
commita00dab7bcfb815ce370e14d1b33f328d5aee1c0d (patch)
tree5d82a44791a12c6094c93a678f718478a918d4d6 /migrate/changeset/schema.py
parentf44d07956a2827484cddeee161cbd7724229f92f (diff)
downloadsqlalchemy-migrate-a00dab7bcfb815ce370e14d1b33f328d5aee1c0d.tar.gz
Import MutableMapping from the correct Python module
Change-Id: Ifb66fe22bc607b13f5c4756d3b93f5e8206c33e3
Diffstat (limited to 'migrate/changeset/schema.py')
-rw-r--r--migrate/changeset/schema.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/migrate/changeset/schema.py b/migrate/changeset/schema.py
index 931ef7b..bf18e03 100644
--- a/migrate/changeset/schema.py
+++ b/migrate/changeset/schema.py
@@ -3,7 +3,7 @@
"""
import abc
try: # Python 3
- from collections import MutableMapping as DictMixin
+ from collections.abc import MutableMapping as DictMixin
except ImportError: # Python 2
from UserDict import DictMixin
import warnings