diff --git a/client-barcode/freitagslib/commands.py b/client-barcode/freitagslib/commands.py index 01d48c9..fb8f6c2 100644 --- a/client-barcode/freitagslib/commands.py +++ b/client-barcode/freitagslib/commands.py @@ -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