Author: gwilson
Date: 2007-09-25 18:16:11 -0500 (Tue, 25 Sep 2007)
New Revision: 6425

Modified:
   django/trunk/django/contrib/sessions/models.py
Log:
Fixed #5598 -- Restored needed imports that were removed in [6333].  Thanks, 
gav.


Modified: django/trunk/django/contrib/sessions/models.py
===================================================================
--- django/trunk/django/contrib/sessions/models.py      2007-09-25 16:06:35 UTC 
(rev 6424)
+++ django/trunk/django/contrib/sessions/models.py      2007-09-25 23:16:11 UTC 
(rev 6425)
@@ -1,5 +1,12 @@
-import base64, md5, random, sys, datetime
+import os
+import sys
+import time
+import datetime
+import base64
+import md5
+import random
 import cPickle as pickle
+
 from django.db import models
 from django.utils.translation import ugettext_lazy as _
 from django.conf import settings


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to