mirror of
https://github.com/lgandx/Responder.git
synced 2025-12-06 12:41:31 +00:00
odict: fix import issue
This commit is contained in:
@@ -3,7 +3,7 @@ try:
|
|||||||
from UserDict import DictMixin
|
from UserDict import DictMixin
|
||||||
except ImportError:
|
except ImportError:
|
||||||
from collections import UserDict
|
from collections import UserDict
|
||||||
from collections import MutableMapping as DictMixin
|
from collections.abc import MutableMapping as DictMixin
|
||||||
|
|
||||||
class OrderedDict(dict, DictMixin):
|
class OrderedDict(dict, DictMixin):
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user