From 6264e0016550b4ddf3a7708eee5863cc21939c4f Mon Sep 17 00:00:00 2001 From: "Richard Horton (hortonr6)" Date: Thu, 2 Nov 2017 16:18:54 +0000 Subject: [PATCH] Changed commas to concatenators --- GUI.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GUI.py b/GUI.py index 48c68d2..c6c6b11 100644 --- a/GUI.py +++ b/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")