Skip to content

Commit cd67b8e

Browse files
authored
Merge pull request matplotlib#29996 from meeseeksmachine/auto-backport-of-pr-29995-on-v3.10.x
Backport PR matplotlib#29995 on branch v3.10.x (Fix typo: missing singlequote in unrecognized backend exception)
2 parents be0d1aa + f7b8d2d commit cd67b8e

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)