Skip to content
Permalink
Browse files
Changed commas to concatenators
  • Loading branch information
hortonr6 committed Nov 2, 2017
1 parent 0251bc7 commit 6264e0016550b4ddf3a7708eee5863cc21939c4f
Showing 1 changed file with 2 additions and 2 deletions.
4 GUI.py
@@ -21,9 +21,9 @@ def cb(event):
userName = userName.title()
botText = "Hello " + userName + ", it's nice to meet you"
msgBox.configure(state="normal")
msgBox.insert(tk.END, "User: ", userText, "\n")
msgBox.insert(tk.END, "User: " + userText + "\n")
#msgBox.insert(tk.END, "\n")
msgBox.insert(tk.END, "Bot: ", botText, "\n")
msgBox.insert(tk.END, "Bot: " + botText + "\n")
#msgBox.insert(tk.END, "\n")
msgBox.configure(state="disabled")

0 comments on commit 6264e00

Please sign in to comment.