Skip to content

Commit

Permalink
@mbridak more error trapping
Browse files Browse the repository at this point in the history
  • Loading branch information
mbridak committed Nov 23, 2024
1 parent 3a69294 commit 2dc7f4a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion CloudLogPyCAT.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,10 @@ def mainloop(self):
self.oldfreq = self.newfreq
self.oldmode = self.newmode
self.oldpower = self.newpower
except requests.exceptions.ConnectionError:
except (
requests.exceptions.ConnectionError,
requests.exceptions.InvalidSchema,
):
...


Expand Down

0 comments on commit 2dc7f4a

Please sign in to comment.