Skip to content

Commit 7779c75

Browse files
Merge pull request #1299 from winl0gon/master
Fix anyrun_analyzer.py for submit file
2 parents 5b8ee78 + c1de513 commit 7779c75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

analyzers/AnyRun/anyrun_analyzer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def run(self):
119119
if status_code == 200:
120120
task_id = response.json()["data"]["taskid"]
121121
elif status_code == 201:
122-
task_id = response.json()["taskid"]
122+
task_id = response.json()["data"]["taskid"]
123123
elif status_code == 429:
124124
# it not support parallel runs, so we wait and resubmit later
125125
time.sleep(60)

0 commit comments

Comments
 (0)