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")