diff options
-rw-r--r-- | test/templates/chs_unicode.html | 2 | ||||
-rw-r--r-- | test/templates/chs_unicode_py3k.html | 2 | ||||
-rw-r--r-- | test/templates/chs_utf8.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/test/templates/chs_unicode.html b/test/templates/chs_unicode.html index 57fccdf..7b897e9 100644 --- a/test/templates/chs_unicode.html +++ b/test/templates/chs_unicode.html @@ -1,4 +1,4 @@ -## -*- coding:utf8 -*- +## -*- coding:utf-8 -*- <% msg = u'新中国的主席' %> diff --git a/test/templates/chs_unicode_py3k.html b/test/templates/chs_unicode_py3k.html index bffe330..e4b6a8f 100644 --- a/test/templates/chs_unicode_py3k.html +++ b/test/templates/chs_unicode_py3k.html @@ -1,4 +1,4 @@ -## -*- coding:utf8 -*- +## -*- coding:utf-8 -*- <% msg = '新中国的主席' %> diff --git a/test/templates/chs_utf8.html b/test/templates/chs_utf8.html index 170d626..5f4733f 100644 --- a/test/templates/chs_utf8.html +++ b/test/templates/chs_utf8.html @@ -1,4 +1,4 @@ -## -*- coding:utf8 -*- +## -*- coding:utf-8 -*- <% msg = '新中国的主席' %> |