4
2
mirror of https://github.com/getbible/v2_builder.git synced 2024-05-31 21:00:48 +00:00

Fixed double conf in path

This commit is contained in:
Llewellyn van der Merwe 2021-04-20 18:54:14 +02:00
parent b8aee8200f
commit 496260b5c9
Signed by: Llewellyn
GPG Key ID: EFC0C720A240551C

View File

@ -10,7 +10,7 @@ args = parser.parse_args()
MAIN_PATH = args.output_path
# some helper dictionaries
v1_translation_names = json.loads(open(args.conf_dir + "/conf/CrosswireModulesMap.json").read())
v1_translation_names = json.loads(open(args.conf_dir + "/CrosswireModulesMap.json").read())
# scripts directory
CURRENT_DIR = os.path.dirname(os.path.realpath(__file__))