From 4304c6858efd144bfdb1f39e04e7198f2c8bd38c Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Mon, 18 Aug 2014 09:02:08 +0200 Subject: [PATCH] Configuration path fixed --- bin/indexer_lookup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/indexer_lookup.py b/bin/indexer_lookup.py index 1c019c72..73eed9f2 100644 --- a/bin/indexer_lookup.py +++ b/bin/indexer_lookup.py @@ -21,7 +21,7 @@ def readdoc(path=None): f = gzip.open(path, 'r') return f.read() -configfile = '../packages/config.cfg' +configfile = './packages/config.cfg' cfg = ConfigParser.ConfigParser() cfg.read(configfile)