fixed integer division

This commit is contained in:
Niels Serup 2012-03-06 12:56:50 +01:00
parent c850a6a2e0
commit 5cc75e47c4
1 changed files with 1 additions and 1 deletions

View File

@ -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):