diff options
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/i18n/makelocalealias.py | 3 | ||||
-rw-r--r-- | Tools/msi/msi.py | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/Tools/i18n/makelocalealias.py b/Tools/i18n/makelocalealias.py index 743185b..43df35a 100644 --- a/Tools/i18n/makelocalealias.py +++ b/Tools/i18n/makelocalealias.py @@ -62,7 +62,7 @@ def print_differences(data, olddata): print '# updated %r -> %r to %r' % \ (k, olddata[k], data[k]) # Additions are not mentioned - + if __name__ == '__main__': data = locale.locale_alias.copy() data.update(parse(LOCALE_ALIAS)) @@ -71,4 +71,3 @@ if __name__ == '__main__': print 'locale_alias = {' pprint(data) print '}' - diff --git a/Tools/msi/msi.py b/Tools/msi/msi.py index dbb7ecb..bd23f96 100644 --- a/Tools/msi/msi.py +++ b/Tools/msi/msi.py @@ -977,7 +977,7 @@ def add_files(db): lib.add_file('python%s%s.lib' % (major, minor)) # Add the mingw-format library if have_mingw: - lib.add_file('libpython%s%s.a' % (major, minor)) + lib.add_file('libpython%s%s.a' % (major, minor)) if have_tcl: # Add Tcl/Tk tcldirs = [(root, '../tcltk/lib', 'tcl')] |