We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2106084 commit fe7a54eCopy full SHA for fe7a54e
wiki/wiki.py
@@ -63,7 +63,8 @@ def __init__(self, root):
63
64
def summary(self):
65
self.query = wikipedia.page(self.question.get())
66
- self.answer.insert(END, (query.summary))
+ self.answer.delete('1.0', END)
67
+ self.answer.insert(END, (self.query.summary))
68
self.answer.pack()
69
70
if __name__ == "__main__":
0 commit comments