Author: mtredinnick Date: 2008-08-20 16:12:45 -0500 (Wed, 20 Aug 2008) New Revision: 8451
Modified: django/trunk/django/contrib/sessions/backends/file.py Log: Fixed #8457 -- Fixed a missing import. Modified: django/trunk/django/contrib/sessions/backends/file.py =================================================================== --- django/trunk/django/contrib/sessions/backends/file.py 2008-08-20 18:50:06 UTC (rev 8450) +++ django/trunk/django/contrib/sessions/backends/file.py 2008-08-20 21:12:45 UTC (rev 8451) @@ -1,3 +1,4 @@ +import errno import os import tempfile --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
