--- a/web/blinkster/__init__.py Mon Feb 01 14:59:28 2010 +0100
+++ b/web/blinkster/__init__.py Mon Feb 01 18:56:57 2010 +0100
@@ -1,3 +1,3 @@
-VERSION = (0,9)
+VERSION = (0,10)
VERSION_STR = unicode(".".join(map(lambda i:"%02d" % (i,), VERSION)))
--- a/web/blinkster/models.py Mon Feb 01 14:59:28 2010 +0100
+++ b/web/blinkster/models.py Mon Feb 01 18:56:57 2010 +0100
@@ -25,7 +25,7 @@
short_title = models.CharField(max_length=512, unique=True, blank=False, null=False)
description = models.TextField(blank=True, null=True)
- photos = models.ForeignKey(photologue.models.Gallery, null=True)
+ photos = models.ForeignKey(photologue.models.Gallery, null=True, blank=True)
def serialize_to_dict(self):
res = {