Commit e2095888 authored by Michal Čihař's avatar Michal Čihař

Add missing unicode literals usage

Fixes rb#580
Signed-off-by: default avatarMichal Čihař <michal@cihar.com>
parent 969cec0a
...@@ -18,6 +18,8 @@ ...@@ -18,6 +18,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
from __future__ import unicode_literals
import sys import sys
from django.core.urlresolvers import reverse from django.core.urlresolvers import reverse
......
...@@ -18,6 +18,8 @@ ...@@ -18,6 +18,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
from __future__ import unicode_literals
import os import os
import os.path import os.path
......
...@@ -18,6 +18,8 @@ ...@@ -18,6 +18,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
from __future__ import unicode_literals
import os import os
import codecs import codecs
from datetime import timedelta from datetime import timedelta
......
...@@ -18,6 +18,8 @@ ...@@ -18,6 +18,8 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
# #
from __future__ import unicode_literals
import functools import functools
import traceback import traceback
import multiprocessing import multiprocessing
......
...@@ -19,6 +19,7 @@ ...@@ -19,6 +19,7 @@
# #
from __future__ import unicode_literals from __future__ import unicode_literals
from django.db import models from django.db import models
from django.db.models import Count from django.db.models import Count
from django.contrib.auth.models import User from django.contrib.auth.models import User
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment