[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[tor-commits] [sbws/master] fix: stem: Add possible exception cause
commit cb6a8a76da0d77ef2896c9f99003649b3d43c1b4
Author: juga0 <juga@xxxxxxxxxx>
Date: Wed Dec 16 15:55:13 2020 +0000
fix: stem: Add possible exception cause
---
sbws/util/stem.py | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/sbws/util/stem.py b/sbws/util/stem.py
index 5605c29..ce5253c 100644
--- a/sbws/util/stem.py
+++ b/sbws/util/stem.py
@@ -181,9 +181,12 @@ def set_torrc_options_can_fail(controller):
for k, v in TORRC_OPTIONS_CAN_FAIL.items():
try:
controller.set_conf(k, v)
- except InvalidArguments as error:
+ except (InvalidArguments, InvalidRequest) as error:
log.debug('Ignoring option not supported by this Tor version. %s',
error)
+ except ControllerError as e:
+ log.exception(e)
+ exit(1)
def launch_tor(conf):
_______________________________________________
tor-commits mailing list
tor-commits@xxxxxxxxxxxxxxxxxxxx
https://lists.torproject.org/cgi-bin/mailman/listinfo/tor-commits