Author: utrebec
Date: 2006-07-26 06:25:11 -0500 (Wed, 26 Jul 2006)
New Revision: 3453

Modified:
   django/branches/full-history/django/contrib/history/views/main.py
Log:
[full-history]
Removed reference to get_all_models()



Modified: django/branches/full-history/django/contrib/history/views/main.py
===================================================================
--- django/branches/full-history/django/contrib/history/views/main.py   
2006-07-26 10:52:08 UTC (rev 3452)
+++ django/branches/full-history/django/contrib/history/views/main.py   
2006-07-26 11:25:11 UTC (rev 3453)
@@ -1,7 +1,7 @@
 from django.db import models
 #from django.db.models import get_models
 #from django.utils.text import capfirst
-from django.contrib.history.models import ChangeLog, get_version, 
list_history, version_by_date, get_all_models
+from django.contrib.history.models import ChangeLog, get_version, 
list_history, version_by_date
 from django.http import HttpResponse
 from django.shortcuts import get_object_or_404, render_to_response
 from datetime import datetime
@@ -14,7 +14,7 @@
                              {'changes_list': changes_list})
 
 def list(request):
-    get_all_models()
+    #get_all_models()
 
     changes_list = ChangeLog.objects.all()
     return render_to_response('history/list.html', 


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

Reply via email to