diff -r 5243c2a2f7f8 -r fe819b4c62c0 util/paths.py --- a/util/paths.py Thu Apr 15 09:15:23 2021 +0200 +++ b/util/paths.py Wed May 12 11:38:00 2021 +0200 @@ -28,7 +28,6 @@ import sys from builtins import str as text - def AbsFile(file): if isinstance(file, str): file = text(file, sys.getfilesystemencoding()) @@ -49,3 +48,10 @@ for dummy in range(0, level): path = os.path.dirname(path) return path + +def ThirdPartyPath(name): + """ + Return folder where to find sibling projects like Modbus, CanFestival, BACnet + """ + return os.path.join(AbsParentDir(__file__, 2), name) +