Always make sure - we convert the psasword to string in the as_dict

function.
pull/3/head
Harshal Dhumal 2016-05-14 01:14:02 +05:30 committed by Ashesh Vashi
parent cc91a538e0
commit 14839bf5de
1 changed files with 1 additions and 1 deletions

View File

@ -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()