This commit is contained in:
wangwei01 2019-07-19 15:28:00 +08:00
parent 5543b7074e
commit b0885fa4c5

View File

@ -62,8 +62,6 @@ def readMysqlData(rushtime):
cursor.execute('SELECT accountid, user_name, avatar_url, score FROM user;')
for row in cursor:
score = row[3]
if row[1] == null:
return ''
array.append((row[0], row[1].decode('utf-8'), row[2], score))
r = getRedis()