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

function.
This commit is contained in:
Harshal Dhumal
2016-05-14 01:14:02 +05:30
committed by Ashesh Vashi
parent cc91a538e0
commit 14839bf5de

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