summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2015-06-04 00:29:21 +0200
committerLukas Fleischer <lfleischer@archlinux.org>2015-06-04 11:25:01 +0200
commit18292e71143fefec22f981356e7a79f208ae68dc (patch)
tree0d80e081a1a20c6b966b12d048e30ca9578cc168 /scripts
parent50c0ee9ec45db7ceecaa333707873f45795fb38a (diff)
downloadaurweb-18292e71143fefec22f981356e7a79f208ae68dc.tar.xz
aurblup: Fix path to configuration file
Fixes a regression introduced in commit 10ecd39 (Restructure scripts, 2015-06-01). Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/aurblup.py2
1 files changed, 1 insertions, 1 deletions
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')