Skip to content

Commit

Permalink
Merge branch 'master' of github.com:garethr/django-test-extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
garethr committed Jun 22, 2011
2 parents aa4921b + e3ef4c5 commit 7be8f31
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/test_extensions/testrunners/xmloutput.py
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@
from xmlunit.unittest import _WritelnDecorator, XmlTextTestRunner as his_XmlTextTestRunner

from django.test.simple import *
from django.utils import unittest
from xml.sax.saxutils import escape

try:
# The django.utils.unittest alias is available in Django >= 1.3
from django.utils import unittest
except ImportError:
import unittest

try:
class XMLTestSuiteRunner(DjangoTestSuiteRunner):
Expand Down

0 comments on commit 7be8f31

Please sign in to comment.