From 73986a0fc89a9fa8b3547ff21f286840495a4f45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Ezequiel=20Gallina?= Date: Wed, 30 Apr 2014 10:12:48 -0300 Subject: [PATCH] Fixed Python 2.6 compatibility in tests --- django_statsd/tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django_statsd/tests.py b/django_statsd/tests.py index 8bf3ced..7ac6d43 100644 --- a/django_statsd/tests.py +++ b/django_statsd/tests.py @@ -5,7 +5,7 @@ import sys from django.conf import settings from nose.exc import SkipTest from nose import tools as nose_tools -from unittest import skipUnless +from unittest2 import skipUnless from django import VERSION from django.core.urlresolvers import reverse