summaryrefslogtreecommitdiff
path: root/cli/onionshare_cli/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'cli/onionshare_cli/common.py')
-rw-r--r--cli/onionshare_cli/common.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/cli/onionshare_cli/common.py b/cli/onionshare_cli/common.py
index 74bd7a56..b621f3a1 100644
--- a/cli/onionshare_cli/common.py
+++ b/cli/onionshare_cli/common.py
@@ -29,6 +29,7 @@ import tempfile
import threading
import time
import shutil
+from pkg_resources import resource_filename
from .settings import Settings
@@ -73,11 +74,7 @@ class Common:
"""
Returns the absolute path of a resource
"""
- resources_path = os.path.join(
- os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe()))),
- "resources",
- )
- path = os.path.join(resources_path, filename)
+ path = resource_filename("onionshare_cli", os.path.join("resources", filename))
self.log("Common", "get_resource_path", path)
return path