Skip to content

Commit 11d8259

Browse files
author
Jean-Baptiste Poittevin
committed
fix AttributeError: module 'collections' has no attribute 'Iterable'
collections.Iterable is deprecated. Replace it with collections.abc.Iterable.
1 parent 4ad432d commit 11d8259

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ftplugin/orgmode/liborgmode/base.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
except:
1414
from UserList import UserList
1515

16-
import collections
16+
import collections.abc
1717
import sys
1818
from orgmode.py3compat.unicode_compatibility import *
1919

@@ -31,7 +31,7 @@ def flatten_list(lst):
3131
def gen_lst(item):
3232
if isinstance(item, basestring) or isinstance(item, bytes):
3333
yield item
34-
elif isinstance(item, collections.Iterable):
34+
elif isinstance(item, collections.abc.Iterable):
3535
# yield from would be so nice... but c'est la vie
3636
for val in item:
3737
for final in gen_lst(val):

0 commit comments

Comments
 (0)