diff options
author | Guido van Rossum <guido@python.org> | 2007-07-16 23:10:57 +0000 |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2007-07-16 23:10:57 +0000 |
commit | 5b0670a166a964fce8bf8f569a48f18f1b8f5fe6 (patch) | |
tree | e63bdb1f87c6efa1c91a68a8188d99bc0a41d97b /Lib/msilib/__init__.py | |
parent | 6f30c45803a9d17b4e1059ba06b081c6564a5da7 (diff) | |
download | cpython-5b0670a166a964fce8bf8f569a48f18f1b8f5fe6.tar.gz |
Change a bunch of file encodings from Latin-1 to UTF-8.
Remove the encoding from Tix.py (it doesn't seem to need one).
Note: we still have to keep the "coding: utf-8" declaration
for files that aren't pure ASCII, as the default per PEP 3120
hasn't been implemented yet.
Diffstat (limited to 'Lib/msilib/__init__.py')
-rw-r--r-- | Lib/msilib/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/msilib/__init__.py b/Lib/msilib/__init__.py index ad3bf623a5..e2ea8145fd 100644 --- a/Lib/msilib/__init__.py +++ b/Lib/msilib/__init__.py @@ -1,5 +1,5 @@ -# -*- coding: iso-8859-1 -*- -# Copyright (C) 2005 Martin v. Löwis +# -*- coding: utf-8 -*- +# Copyright (C) 2005 Martin v. Löwis # Licensed to PSF under a Contributor Agreement. from _msi import * import os, string, re |