Skip to content

Commit

Permalink
Merge pull request #5207 from tfh-cri/patch-1
Browse files Browse the repository at this point in the history
fix: missing f-string in App._parse_action()
  • Loading branch information
willmcgugan authored Nov 4, 2024
2 parents 2413818 + b4f8347 commit 09003df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/textual/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3678,7 +3678,7 @@ def _parse_action(
raise ActionError(f"Action namespace {destination} is not known")
action_target = getattr(self, destination, None)
if action_target is None:
raise ActionError("Action target {destination!r} not available")
raise ActionError(f"Action target {destination!r} not available")
return (
(default_namespace if action_target is None else action_target),
action_name,
Expand Down

0 comments on commit 09003df

Please sign in to comment.