summarylogtreecommitdiffstats
path: root/fix-python-3.10.patch
diff options
context:
space:
mode:
Diffstat (limited to 'fix-python-3.10.patch')
-rw-r--r--fix-python-3.10.patch12
1 files changed, 12 insertions, 0 deletions
diff --git a/fix-python-3.10.patch b/fix-python-3.10.patch
new file mode 100644
index 000000000000..7c5f05fe74f9
--- /dev/null
+++ b/fix-python-3.10.patch
@@ -0,0 +1,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):