diff options
author | Chris Shenton <chris@koansys.com> | 2011-03-16 23:12:02 -0400 |
---|---|---|
committer | Chris Shenton <chris@koansys.com> | 2011-03-16 23:12:02 -0400 |
commit | 81abb376a3444efa822ac1b352709383865a5ae5 (patch) | |
tree | 196e3ff3cebcb7930628b2eaac96fb3836187684 | |
parent | 91746bc5fe5435758404e3662544cd0f0e38dad9 (diff) | |
download | webob-81abb376a3444efa822ac1b352709383865a5ae5.tar.gz |
Emacs doesn't like UTF-8 but loves utf-8
-rw-r--r-- | tests/test_cookies.py | 2 | ||||
-rw-r--r-- | tests/test_datetime_utils.py | 2 | ||||
-rw-r--r-- | tests/test_headers.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/tests/test_cookies.py b/tests/test_cookies.py index 1ad683c..9dec2e4 100644 --- a/tests/test_cookies.py +++ b/tests/test_cookies.py @@ -1,4 +1,4 @@ -# -*- coding: UTF-8 -*- +# -*- coding: utf-8 -*- from datetime import timedelta from webob import cookies from nose.tools import ok_, assert_raises, eq_ diff --git a/tests/test_datetime_utils.py b/tests/test_datetime_utils.py index e13c7ba..9232cf2 100644 --- a/tests/test_datetime_utils.py +++ b/tests/test_datetime_utils.py @@ -1,4 +1,4 @@ -# -*- coding: UTF-8 -*- +# -*- coding: utf-8 -*- import calendar from datetime import * diff --git a/tests/test_headers.py b/tests/test_headers.py index e7c40dd..e9d8ba2 100644 --- a/tests/test_headers.py +++ b/tests/test_headers.py @@ -1,4 +1,4 @@ -# -*- coding: UTF-8 -*- +# -*- coding: utf-8 -*- from webob import headers from nose.tools import ok_, assert_raises, eq_ as eq |