Skip to content

Commit cc011b5

Browse files
aeroshroncok
andauthored
[3.8] bpo-40431: Fix syntax typo in turtledemo (GH-19777) (#19784)
[3.8] bpo-40431: Fix syntax typo in turtledemo (GH-19777) * Addresses a syntax typo that mistakenly used a undefined string prefix due to a missing space. (cherry picked from commit 49f70db) Co-authored-by: Miro Hrončok <[email protected]>
1 parent 9412f4d commit cc011b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/turtledemo/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ def configGUI(self, start, stop, clear, txt="", color="blue"):
272272
self.stop_btn.config(state=stop,
273273
bg="#d00" if stop == NORMAL else "#fca")
274274
self.clear_btn.config(state=clear,
275-
bg="#d00" if clear == NORMAL else"#fca")
275+
bg="#d00" if clear == NORMAL else "#fca")
276276
self.output_lbl.config(text=txt, fg=color)
277277

278278
def makeLoadDemoMenu(self, master):

0 commit comments

Comments
 (0)