We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ad432d commit 11d8259Copy full SHA for 11d8259
ftplugin/orgmode/liborgmode/base.py
@@ -13,7 +13,7 @@
13
except:
14
from UserList import UserList
15
16
-import collections
+import collections.abc
17
import sys
18
from orgmode.py3compat.unicode_compatibility import *
19
@@ -31,7 +31,7 @@ def flatten_list(lst):
31
def gen_lst(item):
32
if isinstance(item, basestring) or isinstance(item, bytes):
33
yield item
34
- elif isinstance(item, collections.Iterable):
+ elif isinstance(item, collections.abc.Iterable):
35
# yield from would be so nice... but c'est la vie
36
for val in item:
37
for final in gen_lst(val):
0 commit comments