We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d4e67e commit dabf4d3Copy full SHA for dabf4d3
files/usr/share/cinnamon/cinnamon-settings/bin/Spices.py
@@ -420,8 +420,9 @@ def _load_metadata(self):
420
metadata['writable'] = os.access(subdirectory, os.W_OK)
421
self.meta_map[uuid] = metadata
422
except Exception as detail:
423
- print(detail)
424
- print("Skipping %s: there was a problem trying to read metadata.json" % uuid)
+ if not self.themes:
+ print(detail)
425
+ print("Skipping %s: there was a problem trying to read metadata.json" % uuid)
426
else:
427
print("%s does not exist! Creating it now." % directory)
428
subprocess.call(["mkdir", "-p", directory])
0 commit comments