diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2015-06-04 00:29:21 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-06-04 11:25:01 +0200 |
commit | 18292e71143fefec22f981356e7a79f208ae68dc (patch) | |
tree | 0d80e081a1a20c6b966b12d048e30ca9578cc168 | |
parent | 50c0ee9ec45db7ceecaa333707873f45795fb38a (diff) | |
download | aurweb-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>
-rwxr-xr-x | scripts/aurblup.py | 2 |
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') |