Commit 5938e701 authored by Simon Charette's avatar Simon Charette
Browse files

Fixed a python 3.2 syntax error and python 3 warning introduced by 054ce2aa.

parent 483e1b80
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
from __future__ import absolute_import
from __future__ import absolute_import, unicode_literals

import datetime

@@ -581,4 +581,4 @@ class AdminLogNodeTestCase(TestCase):

        # Rendering should be u'' since this templatetag just logs,
        # it doesn't render any string.
        self.assertEquals(template.render(context), u'')
        self.assertEqual(template.render(context), '')