util/paths.py
branchwxPython4
changeset 3502 a35bf9c585cf
parent 3501 fa291393aac7
child 3750 f62625418bff
--- 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)