From 18292e71143fefec22f981356e7a79f208ae68dc Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Thu, 4 Jun 2015 00:29:21 +0200 Subject: aurblup: Fix path to configuration file Fixes a regression introduced in commit 10ecd39 (Restructure scripts, 2015-06-01). Signed-off-by: Lukas Fleischer --- scripts/aurblup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/aurblup.py b/scripts/aurblup.py index e678fee..d6d0c3c 100755 --- a/scripts/aurblup.py +++ b/scripts/aurblup.py @@ -6,7 +6,7 @@ import os import pyalpm config = configparser.RawConfigParser() -config.read(os.path.dirname(os.path.realpath(__file__)) + "/../../conf/config") +config.read(os.path.dirname(os.path.realpath(__file__)) + "/../conf/config") aur_db_host = config.get('database', 'host') aur_db_name = config.get('database', 'name') -- cgit v1.2.3-54-g00ecf