From 3a3a0de34dbd54e435b75d8fb785bfb67bf695d1 2007-03-02 15:55:24 From: walter.doerwald Date: 2007-03-02 15:55:24 Subject: [PATCH] Fix help file name. --- diff --git a/IPython/Extensions/igrid.py b/IPython/Extensions/igrid.py index 39385a2..b479fb0 100644 --- a/IPython/Extensions/igrid.py +++ b/IPython/Extensions/igrid.py @@ -713,7 +713,7 @@ class IGridFrame(wx.Frame): Show the help-HTML in a browser (as a ``HtmlWindow`` does not understand CSS this looks better) """ - filename = urllib.pathname2url(os.path.abspath(os.path.join(os.path.dirname(__file__), "help.html"))) + filename = urllib.pathname2url(os.path.abspath(os.path.join(os.path.dirname(__file__), "igrid_help.html"))) if not filename.startswith("file"): filename = "file:" + filename webbrowser.open(filename, new=1, autoraise=True)