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 3cd2ad1 commit 41296d1Copy full SHA for 41296d1
1 file changed
cmdstanpy/model.py
@@ -292,7 +292,12 @@ def src_info(self) -> Dict[str, Any]:
292
).stdout
293
result = json.loads(out)
294
return result
295
- except (ValueError, RuntimeError, OSError) as e:
+ except (
296
+ ValueError,
297
+ RuntimeError,
298
+ OSError,
299
+ subprocess.CalledProcessError,
300
+ ) as e:
301
get_logger().debug(e)
302
303
0 commit comments