Author: batiste.bieler
Date: Tue Feb 24 03:21:53 2009
New Revision: 363

Modified:
    trunk/pages/models.py
    trunk/pages/tests.py

Log:
Fix issue 54

Modified: trunk/pages/models.py
==============================================================================
--- trunk/pages/models.py       (original)
+++ trunk/pages/models.py       Tue Feb 24 03:21:53 2009
@@ -15,7 +15,6 @@
  from pages.managers import PageManager, ContentManager,  
PagePermissionManager


-
  class Page(models.Model):
      """
      A simple hierarchical page model
@@ -62,7 +61,7 @@

      if settings.PAGE_TAGGING:
          from tagging import fields
-        tags = fields.TagField()
+        tags = fields.TagField(null=True)

      class Meta:
          verbose_name = _('page')

Modified: trunk/pages/tests.py
==============================================================================
--- trunk/pages/tests.py        (original)
+++ trunk/pages/tests.py        Tue Feb 24 03:21:53 2009
@@ -5,10 +5,6 @@
  from django.test.client import Client
  from django.template import TemplateDoesNotExist

-
-
-
-
  class PagesTestCase(TestCase):
      fixtures = ['tests.json']
      counter = 1

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"pinax-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/pinax-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to