summarylogtreecommitdiffstats
path: root/fix-python-3.10.patch
blob: 7c5f05fe74f93b15bb3cdc2ed2c88cb72ae1def4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
diff --git a/fah/util/OrderedDict.py b/fah/util/OrderedDict.py
index d19a916..edb9cbc 100644
--- a/fah/util/OrderedDict.py
+++ b/fah/util/OrderedDict.py
@@ -20,7 +20,7 @@
 ################################################################################

 from collections import UserDict
-from collections import MutableMapping as DictMixin
+from collections.abc import MutableMapping as DictMixin

 class OrderedDict(dict, DictMixin):