summary refs log tree commit diff
path: root/src/kayleevc
diff options
context:
space:
mode:
Diffstat (limited to 'src/kayleevc')
-rw-r--r--src/kayleevc/kaylee.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/kayleevc/kaylee.py b/src/kayleevc/kaylee.py
index 4e99d1a..7cc927f 100644
--- a/src/kayleevc/kaylee.py
+++ b/src/kayleevc/kaylee.py
@@ -178,7 +178,8 @@ class Kaylee:
 
     def load_resource(self, string):
         # TODO: Use the Config object for this path management
-        local_data = os.path.join(os.path.dirname(__file__), '..', 'data')
+        local_data = os.path.join(os.path.dirname(__file__), '..',
+                                  'usr', 'share', 'kaylee')
         paths = ["/usr/share/kaylee/", "/usr/local/share/kaylee", local_data]
         for path in paths:
             resource = os.path.join(path, string)