summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel Jacq <mig@mig5.net>2018-02-26 14:02:15 +1100
committerMiguel Jacq <mig@mig5.net>2018-02-26 14:02:15 +1100
commit022ed032872e598c0f2a456f2074b78a9bfcd67c (patch)
treef1c09aa3e1039555aa410514b994ab441b6c5188
parent56d3090fa65fc765518694b88803b9ffa113b0c6 (diff)
downloadonionshare-022ed032872e598c0f2a456f2074b78a9bfcd67c.tar.gz
onionshare-022ed032872e598c0f2a456f2074b78a9bfcd67c.zip
Uninstantiated system variable
-rw-r--r--onionshare_gui/settings_dialog.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/onionshare_gui/settings_dialog.py b/onionshare_gui/settings_dialog.py
index 9952c06f..7c81afc6 100644
--- a/onionshare_gui/settings_dialog.py
+++ b/onionshare_gui/settings_dialog.py
@@ -46,7 +46,7 @@ class SettingsDialog(QtWidgets.QDialog):
self.setWindowTitle(strings._('gui_settings_window_title', True))
self.setWindowIcon(QtGui.QIcon(common.get_resource_path('images/logo.png')))
- system = platform.system()
+ self.system = platform.system()
# Sharing options
@@ -135,7 +135,7 @@ class SettingsDialog(QtWidgets.QDialog):
autoupdate_group.setLayout(autoupdate_group_layout)
# Autoupdate is only available for Windows and Mac (Linux updates using package manager)
- if system != 'Windows' and system != 'Darwin':
+ if self.system != 'Windows' and self.system != 'Darwin':
autoupdate_group.hide()
# Connection type: either automatic, control port, or socket file
@@ -145,7 +145,7 @@ class SettingsDialog(QtWidgets.QDialog):
self.connection_type_bundled_radio.toggled.connect(self.connection_type_bundled_toggled)
# Bundled Tor doesn't work on dev mode in Windows or Mac
- if (system == 'Windows' or system == 'Darwin') and getattr(sys, 'onionshare_dev_mode', False):
+ if (self.system == 'Windows' or self.system == 'Darwin') and getattr(sys, 'onionshare_dev_mode', False):
self.connection_type_bundled_radio.setEnabled(False)
# Bridge options for bundled tor
@@ -185,7 +185,7 @@ class SettingsDialog(QtWidgets.QDialog):
self.tor_bridges_use_meek_lite_azure_radio.toggled.connect(self.tor_bridges_use_meek_lite_azure_radio_toggled)
# meek_lite currently not supported on the version of obfs4proxy bundled with TorBrowser
- if system == 'Windows' or system == 'Darwin':
+ if self.system == 'Windows' or self.system == 'Darwin':
self.tor_bridges_use_meek_lite_amazon_radio.hide()
self.tor_bridges_use_meek_lite_azure_radio.hide()
@@ -838,7 +838,7 @@ class SettingsDialog(QtWidgets.QDialog):
ipv6_pattern.match(bridge):
new_bridges.append(''.join(['Bridge ', bridge, '\n']))
bridges_valid = True
- if system != 'Windows' and system != 'Darwin' and meek_lite_pattern.match(bridge):
+ if self.system != 'Windows' and self.system != 'Darwin' and meek_lite_pattern.match(bridge):
new_bridges.append(''.join(['Bridge ', bridge, '\n']))
bridges_valid = True