From 40ccef16cb699ff66a9d4163cc195c3a3b28c5ba Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Thu, 1 Jan 2015 14:28:53 -0500 Subject: [PATCH] Silenced an ImportWarning in the template_backends tests. --- tests/template_backends/test_jinja2.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/template_backends/test_jinja2.py b/tests/template_backends/test_jinja2.py index 8c0b8fc8f4..f8cbc047c1 100644 --- a/tests/template_backends/test_jinja2.py +++ b/tests/template_backends/test_jinja2.py @@ -1,3 +1,7 @@ +# Since this package contains a "jinja2" directory, this is required to +# silence an ImportWarning warning on Python 2. +from __future__ import absolute_import + import sys from unittest import skipIf