Always make sure - we convert the psasword to string in the as_dict
function.pull/3/head
parent
cc91a538e0
commit
14839bf5de
|
|
@ -1049,7 +1049,7 @@ class ServerManager(object):
|
|||
|
||||
res = dict()
|
||||
res['sid'] = self.sid
|
||||
res['password'] = self.password
|
||||
res['password'] = str(self.password)
|
||||
|
||||
connections = res['connections'] = dict()
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue