summaryrefslogtreecommitdiff
path: root/django/core
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2014-05-15 19:41:55 +0200
committerClaude Paroz <claude@2xlibre.net>2014-05-15 19:58:41 +0200
commite520a73eeea6b185b719901ab9985ecef00e5664 (patch)
treeaabb1eec8506c7320b00346440b17d19f7116b0e /django/core
parent27aa85246a218b0999c7c9d227eed2afb08ed510 (diff)
Harmonized some PEP 0263 coding preambles
Diffstat (limited to 'django/core')
-rw-r--r--django/core/checks/__init__.py2
-rw-r--r--django/core/management/commands/migrate.py2
-rw-r--r--django/core/management/commands/sqlmigrate.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/django/core/checks/__init__.py b/django/core/checks/__init__.py
index cd4d5cebea..0d2780abd3 100644
--- a/django/core/checks/__init__.py
+++ b/django/core/checks/__init__.py
@@ -1,4 +1,4 @@
-# -*- coding: utf8 -*-
+# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from .messages import (CheckMessage,
diff --git a/django/core/management/commands/migrate.py b/django/core/management/commands/migrate.py
index a48e10bed0..fffa1ebe6e 100644
--- a/django/core/management/commands/migrate.py
+++ b/django/core/management/commands/migrate.py
@@ -1,4 +1,4 @@
-# encoding: utf8
+# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from optparse import make_option
from collections import OrderedDict
diff --git a/django/core/management/commands/sqlmigrate.py b/django/core/management/commands/sqlmigrate.py
index e828733f2c..e8ced69c21 100644
--- a/django/core/management/commands/sqlmigrate.py
+++ b/django/core/management/commands/sqlmigrate.py
@@ -1,4 +1,4 @@
-# encoding: utf8
+# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from optparse import make_option