From 9a9221beb52b60f6f069b5ad3719cde77ea6317d Mon Sep 17 00:00:00 2001 From: poikilos <7557867+poikilos@users.noreply.github.com> Date: Sat, 19 Aug 2023 16:18:19 -0400 Subject: [PATCH] Use getcwd. --- pyenliven/compatiblizemod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyenliven/compatiblizemod.py b/pyenliven/compatiblizemod.py index 37d4eff..37224b8 100755 --- a/pyenliven/compatiblizemod.py +++ b/pyenliven/compatiblizemod.py @@ -126,7 +126,7 @@ def add_depends(mod_path): def main(): - parent = os.path.realpath(".") + parent = os.getcwd() return add_depends(parent)