SF #775057, fix IDLE problem in about dialog

If the file doesn't exist, the code to display an error message was broken
Will backport.
diff --git a/Lib/idlelib/aboutDialog.py b/Lib/idlelib/aboutDialog.py
index 8960b00..3d2bcf6 100644
--- a/Lib/idlelib/aboutDialog.py
+++ b/Lib/idlelib/aboutDialog.py
@@ -139,9 +139,11 @@
             try:
                 textFile = codecs.open(fn, 'r')
             except IOError:
+                import tkMessageBox
                 tkMessageBox.showerror(title='File Load Error',
                                        message='Unable to load file '+
-                                       `fileName`+' .')
+                                       `fn`+' .',
+                                       parent=self)
                 return
             else:
                 data = textFile.read()