From: Moshe Zadka Date: Sat, 31 Mar 2001 14:13:26 +0000 (+0000) Subject: - #12195 - webbrowser.py - there was typo in Mac code X-Git-Tag: v2.0.1c1~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b91dffe109313c154bdb6e8db3376fb4f51aa6e8;p=thirdparty%2FPython%2Fcpython.git - #12195 - webbrowser.py - there was typo in Mac code --- diff --git a/Lib/webbrowser.py b/Lib/webbrowser.py index da70e3b371fe..fd8c5215b23b 100644 --- a/Lib/webbrowser.py +++ b/Lib/webbrowser.py @@ -215,7 +215,7 @@ except ImportError: else: class InternetConfig: def open(self, url, new=0): - ic.launcurl(url) + ic.launchurl(url) def open_new(self, url): self.open(url) diff --git a/Misc/NEWS b/Misc/NEWS index 6bf69c89bd09..15d0e61ce90e 100644 --- a/Misc/NEWS +++ b/Misc/NEWS @@ -129,6 +129,8 @@ http://sourceforge.net/tracker/index.php?func=detail&aid=&group_id=5470&atid - Update install-sh using version from automake 1.4. +- #12195 - webbrowser.py - there was typo in Mac code + What's New in Python 2.0? =========================