From 3aa3a874c9147261ec58c79c5f201fd34e6f7810 Mon Sep 17 00:00:00 2001 From: Sven Heidemann Date: Sun, 11 Apr 2021 10:04:55 +0200 Subject: [PATCH] Improved default cwd in ApplicationEnvironment --- src/cpl/environment/application_environment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpl/environment/application_environment.py b/src/cpl/environment/application_environment.py index 079bc59a..e28e6c6a 100644 --- a/src/cpl/environment/application_environment.py +++ b/src/cpl/environment/application_environment.py @@ -23,7 +23,7 @@ class ApplicationEnvironment(ApplicationEnvironmentABC): self._start_time: datetime = datetime.now() self._end_time: datetime = datetime.now() self._runtime_directory = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) - self._working_directory = os.path.abspath('./') + self._working_directory = os.getcwd() @property def environment_name(self) -> str: