Skip to content

Commit

Permalink
404 is an error
Browse files Browse the repository at this point in the history
  • Loading branch information
rouzbeh committed Oct 20, 2023
1 parent 895c43a commit 1a128a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion actiapi/v3.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ def _get_paginated(self, request: str, token: str):
def validate_response(response):
"""Check response status."""
if response.status_code == 404:
logger.warning("404 Not Found!")
logger.error("404 Not Found!")
result = None
else:
result = response.json()
Expand Down

0 comments on commit 1a128a0

Please sign in to comment.