Commit de681308 authored by Terry Jan Reedy's avatar Terry Jan Reedy

Complete 2 to 3 conversion

parent 34261807
......@@ -80,7 +80,7 @@ if __name__ == '__main__':
root=Tk()
root.title('textView test')
filename = './textView.py'
text = file(filename, 'r').read()
text = open(filename, 'r').read()
btn1 = Button(root, text='view_text',
command=lambda:view_text(root, 'view_text', text))
btn1.pack(side=LEFT)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment