We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 04b9bde commit 0629a43Copy full SHA for 0629a43
nikola/utils.py
@@ -69,7 +69,7 @@
69
husl = None
70
71
from blinker import signal
72
-from collections import defaultdict, Callable, OrderedDict
+from collections import defaultdict, Callable, OrderedDict, Iterable
73
from importlib import reload as _reload
74
from logbook.compat import redirect_logging
75
from logbook.more import ExceptionHandler, ColorizedStderrHandler
@@ -1881,7 +1881,7 @@ def smartjoin(join_char: str, string_or_iterable) -> str:
1881
"""
1882
if isinstance(string_or_iterable, (unicode_str, bytes_str)):
1883
return string_or_iterable
1884
- elif hasattr(string_or_iterable, '__iter__'):
+ elif isinstance(string_or_iterable, Iterable):
1885
return join_char.join([str(e) for e in string_or_iterable])
1886
else:
1887
return str(string_or_iterable)
0 commit comments