diff --git a/tools/rankserver/app.py b/tools/rankserver/app.py index b67d8df..06eb87e 100644 --- a/tools/rankserver/app.py +++ b/tools/rankserver/app.py @@ -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()