client-barcode: Fix constant reference

This commit is contained in:
Sebastian Pipping 2011-10-05 16:40:15 +02:00
parent c70ec751b1
commit 3402393fe4
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ class DepositCommand(Command):
self._difference = amount
def run(self, user_name):
net.deposit(self._difference, DEPOSIT_CASH, user_name)
net.deposit(self._difference, net.DEPOSIT_CASH, user_name)
def label(self):
return '%.2f Euro einzahlen' % self._difference