From 23c44d8c5cf560cc8cb304d8753e8b658d1fe70d Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Wed, 16 Oct 2013 23:03:07 +0200 Subject: Enable unicode_literals in all non-empty modules. --- tests/views.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/views.py') diff --git a/tests/views.py b/tests/views.py index 909a784..ec9f30e 100644 --- a/tests/views.py +++ b/tests/views.py @@ -1,9 +1,11 @@ +from __future__ import unicode_literals + from django.contrib.auth.models import User from django.http import HttpResponse def execute_sql(request): list(User.objects.all()) - + return HttpResponse() def resolving_view(request, arg1, arg2): -- cgit v1.2.3