Skip to content

Commit

Permalink
SSLAuthenticator: don't blindly convert paths to strings, they might …
Browse files Browse the repository at this point in the history
…be 'None';...

this issue is now resolved in a859dad

This reverts commit 85d83e5.
  • Loading branch information
koreno committed Feb 10, 2016
1 parent a4087bd commit cfc164b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/rpyc_classic.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ def main(self):
self.registrar = TCPRegistryClient(ip = self.registry_host, port = self.registry_port)

if self.ssl_keyfile:
self.authenticator = SSLAuthenticator(str(self.ssl_keyfile), str(self.ssl_certfile),
str(self.ssl_cafile))
self.authenticator = SSLAuthenticator(self.ssl_keyfile, self.ssl_certfile,
self.ssl_cafile)
default_port = DEFAULT_SERVER_SSL_PORT
else:
self.authenticator = None
Expand Down

0 comments on commit cfc164b

Please sign in to comment.