Author: julien Date: 2012-03-15 11:55:08 -0700 (Thu, 15 Mar 2012) New Revision: 17746
Modified: django/trunk/tests/regressiontests/comment_tests/tests/model_tests.py Log: Added a `with_statement` import to a test for Python 2.5 compatibility. Modified: django/trunk/tests/regressiontests/comment_tests/tests/model_tests.py =================================================================== --- django/trunk/tests/regressiontests/comment_tests/tests/model_tests.py 2012-03-15 16:50:29 UTC (rev 17745) +++ django/trunk/tests/regressiontests/comment_tests/tests/model_tests.py 2012-03-15 18:55:08 UTC (rev 17746) @@ -1,4 +1,4 @@ -from __future__ import absolute_import +from __future__ import absolute_import, with_statement from django.contrib.comments.models import Comment -- You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-updates?hl=en.
