[snowy] Apply proposed upstream fix for django-openid-auth mysql bug



commit 8b44dfa658935b1176b10978db7dc42781d75456
Author: Sandy Armstrong <sanfordarmstrong gmail com>
Date:   Wed Jul 21 13:51:41 2010 -0700

    Apply proposed upstream fix for django-openid-auth mysql bug
    
    See https://code.launchpad.net/~wligtenberg/django-openid-auth/mysql_fix/+merge/22726
    
    https://bugzilla.gnome.org/show_bug.cgi?id=624934

 lib/django_openid_auth/models.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/lib/django_openid_auth/models.py b/lib/django_openid_auth/models.py
index a9af98f..a30db22 100644
--- a/lib/django_openid_auth/models.py
+++ b/lib/django_openid_auth/models.py
@@ -54,5 +54,5 @@ class Association(models.Model):
 
 class UserOpenID(models.Model):
     user = models.ForeignKey(User)
-    claimed_id = models.TextField(max_length=2047, unique=True)
+    claimed_id = models.CharField(max_length=255, unique=True)
     display_id = models.TextField(max_length=2047)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]