Skip to content

Commit 531638e

Browse files
committed
fix goof
1 parent 91ec5a7 commit 531638e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

main.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,9 +130,10 @@ def can_access(neon_result: Dict[str, str], zone: str) -> bool:
130130
def check_res(res: requests.Response):
131131
try:
132132
res.raise_for_status()
133-
except HTTPError:
133+
except requests.HTTPError:
134134
logging.warning(f"Error response from {res.request.url}:")
135135
logging.warning(res.text)
136+
raise
136137

137138
class NeonOption(NamedTuple):
138139
"""One possible value of a "custom field" in NeonCRM"""

0 commit comments

Comments
 (0)