Skip to content

Commit 09003df

Browse files
authored
Merge pull request #5207 from tfh-cri/patch-1
fix: missing f-string in App._parse_action()
2 parents 2413818 + b4f8347 commit 09003df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/textual/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3678,7 +3678,7 @@ def _parse_action(
36783678
raise ActionError(f"Action namespace {destination} is not known")
36793679
action_target = getattr(self, destination, None)
36803680
if action_target is None:
3681-
raise ActionError("Action target {destination!r} not available")
3681+
raise ActionError(f"Action target {destination!r} not available")
36823682
return (
36833683
(default_namespace if action_target is None else action_target),
36843684
action_name,

0 commit comments

Comments
 (0)