diff options
author | Tim Peters <tim.peters@gmail.com> | 2005-01-07 16:01:32 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2005-01-07 16:01:32 (GMT) |
commit | 5a9fb3c415d1204c7f2c12243ba5d46f5964dcbd (patch) | |
tree | c522f4e92f25037fe08318a3159743d1a21fb7ec /Tools | |
parent | e4f5600e5ca35feef87281090929cac7d8226388 (diff) | |
download | cpython-5a9fb3c415d1204c7f2c12243ba5d46f5964dcbd.zip cpython-5a9fb3c415d1204c7f2c12243ba5d46f5964dcbd.tar.gz cpython-5a9fb3c415d1204c7f2c12243ba5d46f5964dcbd.tar.bz2 |
Whitespace normalization.
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')] |