8000 Backport PR #29995: Fix typo: missing singlequote in unrecognized bac… · matplotlib/matplotlib@f7b8d2d · GitHub
[go: up one dir, main page]

Skip to content

Commit f7b8d2d

Browse files
dstansbymeeseeksmachine
authored andcommitted
Backport PR #29995: Fix typo: missing singlequote in unrecognized backend exception
1 parent be0d1aa commit f7b8d2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/matplotlib/backends/registry.py

Lines changed: 1 addition & 1 deletion
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)
0