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 dfd89d0 commit 619f251Copy full SHA for 619f251
get-platformio.py
pioinstaller/python.py
@@ -211,7 +211,7 @@ def find_compatible_pythons(
211
log.debug(output.decode().strip())
212
except UnicodeDecodeError:
213
pass
214
- except subprocess.CalledProcessError as e: # pylint:disable=bare-except
+ except subprocess.CalledProcessError as e:
215
error = None
216
try:
217
error = e.output.decode()
@@ -228,6 +228,8 @@ def find_compatible_pythons(
228
229
(MAY require administrator access `sudo`)""",
230
)
231
+ except Exception as e: # pylint: disable=broad-except
232
+ log.debug(e)
233
234
if not result and raise_exception:
235
raise exception.IncompatiblePythonError(
0 commit comments