diff options
| author | 2019-11-18 12:06:59 +0000 | |
|---|---|---|
| committer | 2019-11-18 12:06:59 +0000 | |
| commit | 9c4902dcfe2d016b71435ff4be348ea76a1cd7cf (patch) | |
| tree | 2f1c8fd44be3758558c7b56b9672d95c299df1c6 /modules/onionoo.py | |
| parent | v1.15.0-rc1 release (diff) | |
| signature | ||
"EventsResultsError"->"EventResultsError", move errors to utils.error
Diffstat (limited to 'modules/onionoo.py')
| -rw-r--r-- | modules/onionoo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/onionoo.py b/modules/onionoo.py index 77ccb205..427cc487 100644 --- a/modules/onionoo.py +++ b/modules/onionoo.py @@ -14,7 +14,7 @@ def _get_relays_details(search): URL_ONIONOO_DETAILS, get_params={"search": search}, json=True) if page and "relays" in page.data: return page.data["relays"] - raise utils.EventsResultsError() + raise utils.EventResultsError() def _format_relay_summary_message(relays, search): if len(relays) > 1: |
