Skip to content

Commit

Permalink
fix: fix validation error displaying
Browse files Browse the repository at this point in the history
  • Loading branch information
ruscoder committed Nov 22, 2024
1 parent 5f8e8eb commit b6b5a34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fhirsnake/watch.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def process_file(self, file_path):
)
if response.status_code >= 400:
logging.error(
"Unable to update %s via %s (%s): %s", file_path, url, response.status_code, response.text()
"Unable to update %s via %s (%s): %s", file_path, url, response.status_code, response.text
)
else:
logging.info("Updated %s via %s (%s)", file_path, url, response.status_code)
Expand Down

0 comments on commit b6b5a34

Please sign in to comment.