We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a8e8b2 commit 55390c5Copy full SHA for 55390c5
1 file changed
src/manage/installs.py
@@ -23,6 +23,14 @@ def _get_installs(install_dir):
23
try:
24
with p.open() as f:
25
j = json.load(f)
26
+ except ValueError:
27
+ LOGGER.warn(
28
+ "Failed to read install at %s. You may have a broken "
29
+ "install, which can be cleaned up by deleting the directory.",
30
+ d
31
+ )
32
+ LOGGER.debug("ERROR", exc_info=True)
33
+ continue
34
except FileNotFoundError:
35
continue
36
0 commit comments