Now About Social Code
aboutsummaryrefslogtreecommitdiff
path: root/src/config.py
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2024-10-06 17:50:45 +0100
committerLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2024-10-06 17:50:45 +0100
commitb6ff088fcaee86f1518bf0e77a478638af50aa32 (patch)
tree32c859c896038b3dc172c7ccbb6dde76933f6ca1 /src/config.py
parentdb10dc4fdd656b25442c63eb02ea30931eee300e (diff)
fix various gtk errors when running from installed version
Diffstat (limited to 'src/config.py')
-rw-r--r--src/config.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/config.py b/src/config.py
index dc7d507..b5286fd 100644
--- a/src/config.py
+++ b/src/config.py
@@ -34,13 +34,13 @@ CONFIG_DEFAULT_RELAY_LINES = 50
CONFIG_DEFAULT_SECTIONS = ('relay', 'look', 'color', 'ssh', 'upload')
CONFIG_DEFAULT_OPTIONS = (('relay.hostname', ''),
- ('relay.port', 0),
- ('relay.ssl', False),
+ ('relay.port', ''),
+ ('relay.ssl', "off"),
('relay.password', ''),
- ('relay.autoconnect', False),
+ ('relay.autoconnect', "off"),
('relay.lines', str(CONFIG_DEFAULT_RELAY_LINES)),
('ssh.host', ''),
- ('ssh.port', 0),
+ ('ssh.port', ''),
('ssh.username', ''),
('ssh.key', ''),
('upload.url', ''),