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.
1 parent 536d9a5 commit 65f227fCopy full SHA for 65f227f
lib/techniques/error/use.py
@@ -444,8 +444,11 @@ def errorThread():
444
if not value and not abortedFlag:
445
value = _errorFields(expression, expressionFields, expressionFieldsList)
446
447
- if value and isListLike(value) and len(value) == 1 and isinstance(value[0], basestring):
448
- value = unArrayizeValue(value)
+ if value and isListLike(value):
+ if len(value) == 1 and isinstance(value[0], basestring):
449
+ value = unArrayizeValue(value)
450
+ elif len(value) > 1 and stopLimit == 1:
451
+ value = [value]
452
453
duration = calculateDeltaSeconds(start)
454
0 commit comments