Skip to content

Commit 7c88463

Browse files
committed
harvester.py: cache_folder should be a pathlib.Path.
ref: 74c26ab
1 parent e471ac1 commit 7c88463

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python3/cinnamon/harvester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ def __init__(self, spice_type, uuid, index_node, meta_node):
125125

126126
class SpicePathSet():
127127
def __init__(self, cache_item, spice_type):
128-
cache_folder = os.path.join(GLib.get_user_cache_dir(), 'cinnamon', 'spices', spice_type)
128+
cache_folder = Path(os.path.join(GLib.get_user_cache_dir(), 'cinnamon', 'spices', spice_type))
129129

130130
is_theme = spice_type == "theme"
131131

0 commit comments

Comments
 (0)