From 3402393fe49a7bc1a97feb0ee2b10abf809cf346 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Wed, 5 Oct 2011 16:40:15 +0200 Subject: [PATCH] client-barcode: Fix constant reference --- client-barcode/freitagslib/commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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