# 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),]
# 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 = ''