Commit 09b446df authored by Aymeric Augustin's avatar Aymeric Augustin
Browse files

This doesn't need to be a package any more.

Refs #20680.
parent 909433fa
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
from __future__ import absolute_import

import warnings

warnings.warn("django.utils.unittest will be removed in Django 1.9.",
    PendingDeprecationWarning)
    PendingDeprecationWarning, stacklevel=2)

try:
    from unittest2 import *