summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2020-11-29 11:18:03 -0800
committerMicah Lee <micah@micahflee.com>2020-11-29 11:18:03 -0800
commit343834e7af9606a413958b4be32ea0e1bb612944 (patch)
tree4a193bd5ce96ece34daa5a2c234232395346c064
parentaecaae896d36b98ee745148f1efe7aa74497b945 (diff)
downloadonionshare-343834e7af9606a413958b4be32ea0e1bb612944.tar.gz
onionshare-343834e7af9606a413958b4be32ea0e1bb612944.zip
Make settings dialog use the correct get_tor_paths method
-rw-r--r--desktop/src/onionshare/settings_dialog.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/src/onionshare/settings_dialog.py b/desktop/src/onionshare/settings_dialog.py
index 5f37bda1..40de8648 100644
--- a/desktop/src/onionshare/settings_dialog.py
+++ b/desktop/src/onionshare/settings_dialog.py
@@ -142,7 +142,7 @@ class SettingsDialog(QtWidgets.QDialog):
self.tor_geo_ip_file_path,
self.tor_geo_ipv6_file_path,
self.obfs4proxy_file_path,
- ) = self.common.get_tor_paths()
+ ) = self.common.gui.get_tor_paths()
if not self.obfs4proxy_file_path or not os.path.isfile(
self.obfs4proxy_file_path
):
@@ -165,7 +165,7 @@ class SettingsDialog(QtWidgets.QDialog):
self.tor_geo_ip_file_path,
self.tor_geo_ipv6_file_path,
self.obfs4proxy_file_path,
- ) = self.common.get_tor_paths()
+ ) = self.common.gui.get_tor_paths()
if not self.obfs4proxy_file_path or not os.path.isfile(
self.obfs4proxy_file_path
):