diff options
author | Chih-Hsuan Yen <yen@chyen.cc> | 2018-12-03 21:54:01 +0800 |
---|---|---|
committer | Matt Riedemann <mriedem.os@gmail.com> | 2019-01-15 18:16:06 +0000 |
commit | a00dab7bcfb815ce370e14d1b33f328d5aee1c0d (patch) | |
tree | 5d82a44791a12c6094c93a678f718478a918d4d6 /migrate/changeset/schema.py | |
parent | f44d07956a2827484cddeee161cbd7724229f92f (diff) | |
download | sqlalchemy-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.py | 2 |
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 |