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