We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8788317 + bfd5207 commit 9fd6df6Copy full SHA for 9fd6df6
utils/gyb.py
@@ -737,7 +737,7 @@ def execute(self, context):
737
result_string = None
738
if isinstance(result, Number) and not isinstance(result, Integral):
739
result_string = repr(result)
740
- elif isinstance(result, Integral):
+ elif isinstance(result, Integral) or isinstance(result, list):
741
result_string = str(result)
742
else:
743
result_string = StringIO(result).read()
0 commit comments