In bundled Tor mode, wait 2 full seconds before connecting to the Tor controller

This commit is contained in:
Micah Lee 2017-05-18 17:34:36 -07:00
parent c875e923d2
commit d3eeda887b
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73

View File

@ -205,7 +205,7 @@ class Onion(object):
self.tor_proc = subprocess.Popen([self.tor_path, '-f', self.tor_torrc], stdout=subprocess.PIPE, stderr=subprocess.PIPE)
# Wait for the tor controller to start
time.sleep(1)
time.sleep(2)
# Connect to the controller
try: