Skip to content

Commit fa3e9da

Browse files
authored
Merge pull request matplotlib#29995 from NicoWeio/missing-singlequote
Fix typo: missing singlequote in unrecognized backend exception
2 parents 6378dd0 + 7d336bc commit fa3e9da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/registry.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ def resolve_gui_or_backend(self, gui_or_backend):
407407
return self.resolve_backend(gui_or_backend)
408408
except Exception: # KeyError ?
409409
raise RuntimeError(
410-
f"'{gui_or_backend} is not a recognised GUI loop or backend name")
410+
f"'{gui_or_backend}' is not a recognised GUI loop or backend name")
411411

412412

413413
# Singleton

0 commit comments

Comments
 (0)