Skip to content

Commit

Permalink
printing the error to see what is going on
Browse files Browse the repository at this point in the history
  • Loading branch information
sebhoerl committed Sep 2, 2024
1 parent 3e01d18 commit be057f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/verify_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@ def validate(self):
source["status"] = response.status_code
except TimeoutError:
source["status"] = "timeout"
except:
except Exception as e:
source["status"] = "error"
print(e)

print(" Status {}".format(source["status"]))

Expand Down

0 comments on commit be057f4

Please sign in to comment.