Thanks to visit codestin.com Credit goes to github.com
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 4d4e380 commit e6f0107Copy full SHA for e6f0107
1 file changed
lib/techniques/error/use.py
@@ -113,10 +113,10 @@ def __oneShotErrorUse(expression, field):
113
else:
114
retVal += output if output else ''
115
116
- if not (output and len(output) == chunk_length):
117
- break
118
- else:
+ if output and len(output) >= chunk_length:
119
offset += chunk_length
+ else:
+ break
120
121
retVal = output
122
break
0 commit comments