From 87ccb771e7c1844c9261e814c3eaa185e593b7ed Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Mon, 30 Aug 2021 17:28:19 +0200 Subject: [PATCH] made SVN_REPOS_PATH resolve to an absolute path --- elab_users/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/elab_users/__init__.py b/elab_users/__init__.py index e329ef4..de24c29 100644 --- a/elab_users/__init__.py +++ b/elab_users/__init__.py @@ -24,7 +24,7 @@ from .constants import ( HTPWD_FILE_NAME, ) -SVN_REPOS_PATH = Path(os.getenv("SVN_REPOS_PATH", default=".")) +SVN_REPOS_PATH = Path(os.getenv("SVN_REPOS_PATH", default=".")).resolve() COMMANDS = ["user", "groups", "add", "restricted", "retire", "password"]