diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2013-10-05 13:21:16 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2013-10-05 13:21:16 -0400 |
commit | 7599c0d495353607155f336c8c7a9850f8ad4f55 (patch) | |
tree | b79f345105791f836d3a6deb73550db44731b15c /tests/test_phystokens.py | |
parent | 9c308678f4043a093503df1770caf8bc9d6bec9d (diff) | |
download | python-coveragepy-git-7599c0d495353607155f336c8c7a9850f8ad4f55.tar.gz |
Make everything work on py2.3 again (for the last time).
Diffstat (limited to 'tests/test_phystokens.py')
-rw-r--r-- | tests/test_phystokens.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_phystokens.py b/tests/test_phystokens.py index 261a2dbd..c1e51f1c 100644 --- a/tests/test_phystokens.py +++ b/tests/test_phystokens.py @@ -89,7 +89,7 @@ if sys.version_info < (3, 0): if sys.version_info >= (2,4): default_encoding = 'ascii' else: - default_encoding = 'iso8859-1' + default_encoding = 'iso-8859-1' def test_detect_source_encoding(self): # Various forms from http://www.python.org/dev/peps/pep-0263/ |