From 35989b3e0414465a8fe13bbf7772535dc658c23d Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Fri, 14 Oct 2011 18:57:24 +0200 Subject: [PATCH] client-barcode: Update server URL --- client-barcode/freitagslib/network.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-barcode/freitagslib/network.py b/client-barcode/freitagslib/network.py index 5b75030..4e32ce5 100644 --- a/client-barcode/freitagslib/network.py +++ b/client-barcode/freitagslib/network.py @@ -23,7 +23,7 @@ DEPOSIT_CASH = 1 DEPOSIT_BANK = 2 -_BASE_URL = 'http://devcat.someserver.de:13805/api2/' +_BASE_URL = 'https://k4ever.freitagsrunde.org:443/api2/' _auth = base64.encodestring('%s:%s' % (os.environ['BARCODE_PLUGIN_USER'], os.environ['BARCODE_PLUGIN_PASS'])).rstrip() _headers = {'Authorization':'Basic %s' % _auth}