Skip to content

Commit 3291bf7

Browse files
fix: do not nest double quotes, which is a 3.12+ only feature (#16)
Fixes a crash
1 parent 31f4dd8 commit 3291bf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scc/gui/controller_image.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def use_config(self, config, backup=None, controller=None):
9393
"""
9494
self.backup = backup
9595
self.current = self._ensure_config(config or {}, controller)
96-
self.set_image(os.path.join(self.app.imagepath, f"controller-images/{self.current["gui"]["background"]}.svg"))
96+
self.set_image(os.path.join(self.app.imagepath, f"controller-images/{self.current['gui']['background']}.svg"))
9797
if not self.current["gui"]["no_buttons_in_gui"]:
9898
self._fill_button_images(self.current["gui"]["buttons"])
9999
self.hilight({})

0 commit comments

Comments
 (0)