summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/help_about.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/idlelib/help_about.py')
-rw-r--r--Lib/idlelib/help_about.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/idlelib/help_about.py b/Lib/idlelib/help_about.py
index 3112e6a..4b6c528 100644
--- a/Lib/idlelib/help_about.py
+++ b/Lib/idlelib/help_about.py
@@ -5,7 +5,7 @@
import os
from sys import version
from tkinter import *
-from idlelib import textView
+from idlelib import textview
class AboutDialog(Toplevel):
"""Modal about dialog for idle
@@ -135,11 +135,11 @@ class AboutDialog(Toplevel):
def display_printer_text(self, title, printer):
printer._Printer__setup()
text = '\n'.join(printer._Printer__lines)
- textView.view_text(self, title, text)
+ textview.view_text(self, title, text)
def display_file_text(self, title, filename, encoding=None):
fn = os.path.join(os.path.abspath(os.path.dirname(__file__)), filename)
- textView.view_file(self, title, fn, encoding)
+ textview.view_file(self, title, fn, encoding)
def Ok(self, event=None):
self.destroy()