From 358bb343953b527c4f2295ff5a734368412d2a6a Mon Sep 17 00:00:00 2001 From: Yuta Date: Wed, 13 Apr 2011 23:26:01 +0900 Subject: [PATCH] bug fix --- pythonbrew/installer/pythoninstaller.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonbrew/installer/pythoninstaller.py b/pythonbrew/installer/pythoninstaller.py index 46662f2..9c6df3d 100644 --- a/pythonbrew/installer/pythoninstaller.py +++ b/pythonbrew/installer/pythoninstaller.py @@ -180,7 +180,7 @@ class PythonInstallerMacOSX(PythonInstaller): """Python installer for MacOSX SnowLeopard """ def __init__(self, arg, options): - super(PythonInstaller).__init__(arg, options) + super(PythonInstallerMacOSX, self).__init__(arg, options) version = self.pkg.version # check for version if version < '2.6' and (version != '2.4.6' and version != '2.5.5'):