summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Castel <66gilles99@gmail.com>2019-03-16 16:35:07 +0100
committerGilles Castel <66gilles99@gmail.com>2019-03-16 16:35:07 +0100
commit405ebf3b5774529b858d0cc819250c7e7918327e (patch)
treec5ab00c344944aacf277838cb87f32bb55c91f57
parenta2098638e57e63e9c44d32c66527fa886924e20a (diff)
Fix data dirs
-rw-r--r--styles.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/styles.py b/styles.py
index 3d29e27..a403029 100644
--- a/styles.py
+++ b/styles.py
@@ -13,8 +13,8 @@ pressed = []
script_path = Path(os.path.realpath(__file__)).parents[0]
data_dirs = {
- 'style': script_path / '..' / 'data' / 'styles',
- 'object': script_path / '..' / 'data' / 'objects',
+ 'style': script_path / 'data' / 'styles',
+ 'object': script_path / 'data' / 'objects',
}