From 4112258c92e594fc71f4749954aef6d868e30b24 Mon Sep 17 00:00:00 2001 From: James Salter Date: Mon, 26 Jan 2015 13:57:30 +0000 Subject: [PATCH] change coding: utf8 to utf-8 --- cssselect/__init__.py | 2 +- cssselect/parser.py | 2 +- cssselect/tests.py | 2 +- cssselect/xpath.py | 2 +- setup.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cssselect/__init__.py b/cssselect/__init__.py index 871f1b2..544a058 100644 --- a/cssselect/__init__.py +++ b/cssselect/__init__.py @@ -1,4 +1,4 @@ -# coding: utf8 +# coding: utf-8 """ CSS Selectors based on XPath ============================ diff --git a/cssselect/parser.py b/cssselect/parser.py index d71fdda..1383c8c 100644 --- a/cssselect/parser.py +++ b/cssselect/parser.py @@ -1,4 +1,4 @@ -# coding: utf8 +# coding: utf-8 """ cssselect.parser ================ diff --git a/cssselect/tests.py b/cssselect/tests.py index a1fdc9e..ec77c6d 100755 --- a/cssselect/tests.py +++ b/cssselect/tests.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# coding: utf8 +# coding: utf-8 """ Tests for cssselect =================== diff --git a/cssselect/xpath.py b/cssselect/xpath.py index e5e74b9..1f2bdd5 100644 --- a/cssselect/xpath.py +++ b/cssselect/xpath.py @@ -1,4 +1,4 @@ -# coding: utf8 +# coding: utf-8 """ cssselect.xpath =============== diff --git a/setup.py b/setup.py index bd1e385..42bde1f 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -# coding: utf8 +# coding: utf-8 import re import os.path