From 06b4094d45195ebcfda3fcb881e5f5e838445eb1 Mon Sep 17 00:00:00 2001 From: Arinerron Date: Tue, 19 Jun 2018 21:51:03 -0700 Subject: [PATCH] misc changes --- onionr/onionr.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionr/onionr.py b/onionr/onionr.py index 721493b6..312ea3d2 100755 --- a/onionr/onionr.py +++ b/onionr/onionr.py @@ -149,7 +149,7 @@ class Onionr: randomPort = random.randint(1024, 65535) if self.onionrUtils.checkPort(randomPort): break - config.set('client', {'participate': 'true', 'hmac': base64.b16encode(os.urandom(32)).decode('utf-8'), 'port': randomPort, 'api_version': API_VERSION}, True) + config.set('client', {'participate': True, 'hmac': base64.b16encode(os.urandom(32)).decode('utf-8'), 'port': randomPort, 'api_version': API_VERSION}, True) self.cmds = { '': self.showHelpSuggestion,