correct plural spelling of service classes
authorScott Baker <smbaker@gmail.com>
Mon, 13 May 2013 19:40:53 +0000 (12:40 -0700)
committerScott Baker <smbaker@gmail.com>
Mon, 13 May 2013 19:40:53 +0000 (12:40 -0700)
planetstack/core/models/serviceclass.py

index 8e7d21f..1f9fc58 100644 (file)
@@ -15,5 +15,8 @@ class ServiceClass(PlCoreBase):
     upgradeRequiresApproval = models.BooleanField(default=False)
     upgradeFrom = models.ManyToManyField('self', blank=True, null=True)
 
+    class Meta(PlCoreBase.Meta):
+       verbose_name_plural = "Service classes"
+
     def __unicode__(self):  return u'%s' % (self.name)