diff --git a/subsites/lunchuman/lunchuman.wsgi b/subsites/lunchuman/lunchuman.wsgi index 4478c39..165b9a6 100644 --- a/subsites/lunchuman/lunchuman.wsgi +++ b/subsites/lunchuman/lunchuman.wsgi @@ -78,7 +78,7 @@ foods int self.conn.commit() def get_users(self): - self.cursor.execute('select * from users order by moneys / foods desc') + self.cursor.execute('select * from users order by moneys / (foods * 1.0) desc') return self.cursor.fetchall() def add_user(self, name):