diff --git a/example/breeze_theme.py b/example/breeze_theme.py index 9085a0e..2468143 100644 --- a/example/breeze_theme.py +++ b/example/breeze_theme.py @@ -302,8 +302,10 @@ def _get_theme_macos() -> Theme: return Theme.DARK if result == 'Dark' else Theme.LIGHT except UnicodeDecodeError: return Theme.LIGHT - except subprocess.CalledProcessError: + except subprocess.CalledProcessError as error: # We can't read these defaults, just try using our libcs + print(error.stderr) + print(error.stdout) # TODO: Reset to pass... raise