mirror of
https://github.com/lgandx/Responder.git
synced 2025-12-14 19:59:03 +00:00
keep compatibility with previous versions
This commit is contained in:
@@ -3,6 +3,9 @@ try:
|
||||
from UserDict import DictMixin
|
||||
except ImportError:
|
||||
from collections import UserDict
|
||||
try:
|
||||
from collections import MutableMapping as DictMixin
|
||||
except ImportError:
|
||||
from collections.abc import MutableMapping as DictMixin
|
||||
|
||||
class OrderedDict(dict, DictMixin):
|
||||
|
||||
Reference in New Issue
Block a user