When trying to upload results data with results.py I get an error in the following line, as "content" does not exists in data when the table does not exist, yet.
|
if data["content"]["rowcount"] == 0: |
I just exchanged the line with if "not found" in data["reason"]: to make it work for me right now. This is not a proposal for a fix.
When trying to upload results data with
results.pyI get an error in the following line, as "content" does not exists in data when the table does not exist, yet.sedos_upload/main.py
Line 111 in 011815b
I just exchanged the line with
if "not found" in data["reason"]:to make it work for me right now. This is not a proposal for a fix.