]> git.saurik.com Git - wxWidgets.git/blobdiff - wxPython/distrib/make_installer_inno4.py
removed tabs and trailing whitespace
[wxWidgets.git] / wxPython / distrib / make_installer_inno4.py
index cee7c888a09acc56ac0d21ae5a94c81438733c2b..16d521985c8c0890b230079cd52aca645575e7ef 100755 (executable)
@@ -582,7 +582,7 @@ def build_locale_string(pkgdir):
             if not os.path.isdir(filename):
                 lst.append( locale_template % (filename, pkgdir, dirname) )
 
-    os.path.walk('wx\\locale', walk_helper, stringlst)
+    os.path.walk('wx\\i18n', walk_helper, stringlst)
     return '\n'.join(stringlst)
 
 
@@ -655,9 +655,7 @@ def main():
     SYSDIR     = %(SYSDIR)s
     """ % vars()
 
-    if PYTHONVER >= "2.4":
-        IF22 = r"InstallDir := InstallDir + 'Lib\site-packages';"
-    elif PYTHONVER >= "2.2":
+    if PYTHONVER >= "2.2":
         IF22 = r"InstallDir := InstallDir + '\Lib\site-packages';"
     else:
         IF22 = ""