fixed integer division
This commit is contained in:
parent
c850a6a2e0
commit
5cc75e47c4
|
@ -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):
|
||||
|
|
Loading…
Reference in New Issue