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 fe6f44f commit d548daeCopy full SHA for d548dae
continuous_integration/scripts/host_info.py
@@ -33,7 +33,7 @@ def main() -> None:
33
try:
34
freqs = psutil.cpu_freq(percpu=True)
35
# https://github.com/giampaolo/psutil/issues/2382
36
- except RuntimeError:
+ except (AttributeError, RuntimeError):
37
print("CPU frequency: not available")
38
else:
39
print("CPU frequency:")
0 commit comments