Skip to content

Commit

Permalink
registrobr: fix exception in https source handling
Browse files Browse the repository at this point in the history
  • Loading branch information
liske committed Feb 19, 2024
1 parent 643f528 commit fc0e78a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pierky/arouteserver/registro_br_db_dump.py
Expand Up @@ -106,7 +106,7 @@ def _get_data(self):
url = self.source
try:
response = requests.get(url)
raw_data = response.text
raw_data = response.raw.read()
except Exception as e:
raise RegistroBRWhoisDBDumpError(
"Error while retrieving Registro.br Whois DB dump "
Expand Down

0 comments on commit fc0e78a

Please sign in to comment.