From 8dfea0c17a6b1bc6985cf767a77ba1aec7ec0c07 Mon Sep 17 00:00:00 2001 From: Mengjuei Date: Sun, 25 Mar 2012 21:32:03 -0700 Subject: [PATCH] Typo and data revision --- pyInstaller/InstallerAppDelegate.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyInstaller/InstallerAppDelegate.py b/pyInstaller/InstallerAppDelegate.py index dde3de4e..c608e81f 100644 --- a/pyInstaller/InstallerAppDelegate.py +++ b/pyInstaller/InstallerAppDelegate.py @@ -42,10 +42,10 @@ class InstallerAppDelegate(NSObject): def windowWillClose_(self, notification): NSApp.terminate_(self) - def checkOSVerion(self): + def checkOSVersion(self): mac_version = platform.mac_ver()[0].split(".") if int(mac_version[1]) < 6: - NSRunAlertPanel(NSLocalizedString("McBopomofo requires on Mac OS X 10.6 or later verion.", ""), + NSRunAlertPanel(NSLocalizedString("McBopomofo requires on Mac OS X 10.6 or later version.", ""), NSLocalizedString("Unable to install McBopomofo on your Mac.",""), NSLocalizedString("OK", ""), None, None) NSApp.terminate_(self) @@ -119,6 +119,6 @@ class InstallerAppDelegate(NSObject): def applicationDidFinishLaunching_(self, sender): NSApp.activateIgnoringOtherApps_(True) - self.checkOSVerion() + self.checkOSVersion() self.showLicenseWindow()