From 173783e154a0a71863f91007ac1359fb70ce63b8 Mon Sep 17 00:00:00 2001 From: Davte Date: Tue, 25 Jul 2023 16:24:18 +0200 Subject: [PATCH] Moved join_path function to utilities module --- davtelepot/utilities.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/davtelepot/utilities.py b/davtelepot/utilities.py index 9d5e3c8..ad5773e 100644 --- a/davtelepot/utilities.py +++ b/davtelepot/utilities.py @@ -1738,3 +1738,7 @@ async def aio_subprocess_shell(command: str) -> Tuple[str, str]: ) ) return stdout, stderr + + +def join_path(*args): + return os.path.abspath(os.path.join(*args))