From 60791f159623138cb57a6f7f18024ede56d3ce88 Mon Sep 17 00:00:00 2001 From: r00t Date: Tue, 11 Apr 2017 08:27:18 -0400 Subject: [PATCH] okay. FINALLY fixed the weird issue with arbitrary paths --- bdisk/host.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bdisk/host.py b/bdisk/host.py index aa0b216..5334f85 100755 --- a/bdisk/host.py +++ b/bdisk/host.py @@ -29,7 +29,7 @@ def getConfig(conf_file='/etc/bdisk/build.ini'): # define some defailt conf paths in case we're installed by # a package manager. in order of the paths we should search. currentdir = os.path.dirname(os.path.realpath(__file__)) - currentdir_user = os.path.abspath('{0}/../dist.build.ini'.format(currentdir)) + currentdir_user = os.path.abspath('{0}/../build.ini'.format(currentdir)) currentdir_def = os.path.abspath('{0}/../extra/dist.build.ini'.format(currentdir)) default_conf_paths = ['/etc/bdisk/build.ini', '/usr/share/bdisk/build.ini',