diff --git a/VendServer/VendServer.py b/VendServer/VendServer.py index 016c6d40a9b3d02c1c617d9591fa972fc68bc024..c3cb3cbcaa6f155d49b106cf5918c7b2a8d50c7e 100755 --- a/VendServer/VendServer.py +++ b/VendServer/VendServer.py @@ -140,8 +140,6 @@ class VendServer(): # If the user has just logged in, show them their balance if welcome: balance = self.dispense.getBalance() - balance = balance[:-4] + '.' + balance[-4] + balance[-2:] # Work around display bug - msg = [(self.center('WELCOME'), False, TEXT_SPEED), (self.center(self.dispense.getUsername()), False, TEXT_SPEED), (self.center(balance), False, TEXT_SPEED),] @@ -398,7 +396,6 @@ class VendServer(): # Price check mode. (name,price) = self.dispense.getItemInfo(self.vstatus.cur_selection) dollarprice = "$%.2f" % ( price / 100.0 ) - dollarprice = dollarprice[:-4] + '.' + dollarprice[-4] + dollarprice[-2:] # Work around display bug self.v.display( self.vstatus.cur_selection+' - %s'%dollarprice) self.vstatus.cur_selection = ''