summaryrefslogtreecommitdiffstats
path: root/wrapper.py
diff options
context:
space:
mode:
Diffstat (limited to 'wrapper.py')
-rw-r--r--wrapper.py6
1 files changed, 5 insertions, 1 deletions
diff --git a/wrapper.py b/wrapper.py
index d8823368..55082248 100644
--- a/wrapper.py
+++ b/wrapper.py
@@ -18,8 +18,12 @@ import importlib.util
18import os 18import os
19 19
20 20
21def WrapperDir():
22 return os.path.dirname(__file__)
23
24
21def WrapperPath(): 25def WrapperPath():
22 return os.path.join(os.path.dirname(__file__), "repo") 26 return os.path.join(WrapperDir(), "repo")
23 27
24 28
25@functools.lru_cache(maxsize=None) 29@functools.lru_cache(maxsize=None)