We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dc161b commit fd906ccCopy full SHA for fd906cc
1 file changed
OMPython/OMCSession.py
@@ -424,7 +424,8 @@ class OMCPathCompatibility(pathlib.Path):
424
425
# modified copy of pathlib.Path.__new__() definition
426
def __new__(cls, *args, **kwargs):
427
- logger.warning("Python < 3.12 - using a limited version of class OMCPath.")
+ logger.warning("Python < 3.12 - using a version of class OMCPath "
428
+ "based on pathlib.Path for local usage only.")
429
430
if cls is OMCPathCompatibility:
431
cls = OMCPathCompatibilityWindows if os.name == 'nt' else OMCPathCompatibilityPosix
0 commit comments