summaryrefslogtreecommitdiff
path: root/django/core/management/commands/sqlsequencereset.py
diff options
context:
space:
mode:
authorJustin Bronn <jbronn@gmail.com>2008-06-26 15:11:55 +0000
committerJustin Bronn <jbronn@gmail.com>2008-06-26 15:11:55 +0000
commitaef8a8305d2190b00386b8b1603deb03a2949f5b (patch)
tree65cce0fdb1f12e4e03384a1be8530da46051fcfa /django/core/management/commands/sqlsequencereset.py
parent9fcc6c305a562b2e622049d4ce8b6148a2c617ca (diff)
gis: Merged revisions 7643-7662,7667-7668,7672-7682,7686-7693,7695-7698,7700-7702,7704-7706,7710,7712-7729,7731-7732,7738-7758,7760-7766 via svnmerge from trunk.
git-svn-id: http://code.djangoproject.com/svn/django/branches/gis@7768 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/core/management/commands/sqlsequencereset.py')
-rw-r--r--django/core/management/commands/sqlsequencereset.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/core/management/commands/sqlsequencereset.py b/django/core/management/commands/sqlsequencereset.py
index 6b12d83843..e8dad0bef6 100644
--- a/django/core/management/commands/sqlsequencereset.py
+++ b/django/core/management/commands/sqlsequencereset.py
@@ -6,4 +6,4 @@ class Command(AppCommand):
def handle_app(self, app, **options):
from django.db import connection, models
- return '\n'.join(connection.ops.sequence_reset_sql(self.style, models.get_models(app)))
+ return u'\n'.join(connection.ops.sequence_reset_sql(self.style, models.get_models(app))).encode('utf-8')