diff -r fa291393aac7 -r a35bf9c585cf util/paths.py --- a/util/paths.py Mon Jun 13 18:05:12 2022 +0200 +++ b/util/paths.py Mon Jun 13 19:22:31 2022 +0200 @@ -55,8 +55,8 @@ """ return os.path.join(AbsParentDir(__file__, 2), name) -def Bpath(name): +def Bpath(*names): """ Return path of files in Beremiz project """ - return os.path.join(AbsParentDir(__file__, 1), name) + return os.path.join(AbsParentDir(__file__, 1), *names)