Changeset - 3ade1c5516ad
[Not reviewed]
0 1 0
Brian Rosner - 12 years ago 2012-08-30 07:04:08
brosner@gmail.com
Fixed typo in method name
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
symposion/schedule/models.py
Show inline comments
...
 
@@ -49,7 +49,7 @@ class Slot(models.Model):
 
        attr = "_rooms"
 
        if not hasattr(self, attr):
 
            class RoomInlineSet(InlineSet):
 
                def consective_count(self):
 
                def consecutive_count(self):
 
                    return len(self)
 
            value = RoomInlineSet(obj=self, field="room_set", delimiter=" ")
 
            setattr(self, attr, value)
0 comments (0 inline, 0 general)