Skip to content

Commit

Permalink
add space to error message
Browse files Browse the repository at this point in the history
  • Loading branch information
niccokunzmann committed Aug 23, 2024
1 parent 825bc51 commit d5ab0e2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recurring_ical_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -962,7 +962,7 @@ def __init__(
if component_adapter_id not in self._component_adapters:
raise ValueError(
f'"{component_adapter_id}" is an unknown name for a '
'recurring component.'
'recurring component. '
f"I only know these: { ', '.join(self._component_adapters)}."
)
component_adapter = self._component_adapters[component_adapter_id]
Expand Down

0 comments on commit d5ab0e2

Please sign in to comment.