Skip to content

Commit 0629a43

Browse files
committedMay 9, 2018
Different check for iterability. h/t @Kwpolska
1 parent 04b9bde commit 0629a43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎nikola/utils.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
husl = None
7070

7171
from blinker import signal
72-
from collections import defaultdict, Callable, OrderedDict
72+
from collections import defaultdict, Callable, OrderedDict, Iterable
7373
from importlib import reload as _reload
7474
from logbook.compat import redirect_logging
7575
from logbook.more import ExceptionHandler, ColorizedStderrHandler
@@ -1881,7 +1881,7 @@ def smartjoin(join_char: str, string_or_iterable) -> str:
18811881
"""
18821882
if isinstance(string_or_iterable, (unicode_str, bytes_str)):
18831883
return string_or_iterable
1884-
elif hasattr(string_or_iterable, '__iter__'):
1884+
elif isinstance(string_or_iterable, Iterable):
18851885
return join_char.join([str(e) for e in string_or_iterable])
18861886
else:
18871887
return str(string_or_iterable)

0 commit comments

Comments
 (0)