Changes between Initial Version and Version 1 of Ticket #19355
- Timestamp:
- Nov 25, 2012, 5:27:11 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #19355
- Property Triage Stage Unreviewed → Accepted
-
Ticket #19355 – Description
initial v1 1 1 In django.test.testcases.LiveServerThread.run a WSGIServerException is caught and the code expects it to have an errno attribute. However not WSGIServerException is a subclass of Exception and thus not guaranteed to have the errno attribute. The following short patch avoids this problem: 2 2 3 4 {{{ 3 5 diff --git a/django/test/testcases.py b/django/test/testcases.py 4 6 index 3bb40a5..ef4c8118 100644 … … 14 16 # the next one in the list. 15 17 continue 18 }}} 19