diff options
| author | Florian Apolloner <florian@apolloner.eu> | 2012-11-09 15:16:06 +0100 |
|---|---|---|
| committer | Florian Apolloner <florian@apolloner.eu> | 2012-11-09 15:16:06 +0100 |
| commit | aea8bf06620c931f7b1e7d991497d593b91f71c9 (patch) | |
| tree | a6170548c698321c3d786075c5a2d8460d232a1a | |
| parent | 19eb56a277291de8c25a0edcc7af111dac7518af (diff) | |
Added missing encoding preamble to gis tests.
'coverage html' did fail without it.
Thanks to Claude Paroz for figuring it out.
| -rw-r--r-- | django/contrib/gis/geoip/tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/django/contrib/gis/geoip/tests.py b/django/contrib/gis/geoip/tests.py index e53230d9ad..c890c4f4ba 100644 --- a/django/contrib/gis/geoip/tests.py +++ b/django/contrib/gis/geoip/tests.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- from __future__ import unicode_literals import os |
