diff -r 732d112dd902 -r a81b72ef156c util/paths.py --- a/util/paths.py Thu Apr 01 15:51:24 2021 +0200 +++ b/util/paths.py Wed May 12 11:36:56 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) +