From b2084536ed0fe47aa042056a094ce24ecf25e385 Mon Sep 17 00:00:00 2001 From: Amir MOHAMMADI <amir.mohammadi@idiap.ch> Date: Wed, 14 Jul 2021 14:39:12 +0200 Subject: [PATCH] Fix the bobrc path --- bob/devtools/constants.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bob/devtools/constants.py b/bob/devtools/constants.py index c8ba2185..3270336a 100644 --- a/bob/devtools/constants.py +++ b/bob/devtools/constants.py @@ -127,6 +127,6 @@ MATPLOTLIB_RCDIR = pkg_resources.resource_filename(__name__, "data") It is required for certain builds that use matplotlib functionality. """ -BOBRC_PATH = pkg_resources.resource_filename(__name__, "data", "bobrc") +BOBRC_PATH = pkg_resources.resource_filename(__name__, os.path.join("data", "bobrc")) """The path to custom Bob configuration file to be used during the CI """ -- GitLab