Skip to content

Commit

Permalink
CI Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexhuszagh committed Sep 7, 2024
1 parent c238b52 commit c9dda88
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion example/breeze_theme.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit c9dda88

Please sign in to comment.