Small cleanup
authorWeb developement <webdev@rigel.piment-noir.org>
Sun, 24 Nov 2013 15:49:00 +0000 (16:49 +0100)
committerWeb developement <webdev@rigel.piment-noir.org>
Sun, 24 Nov 2013 15:49:00 +0000 (16:49 +0100)
Signed-off-by: Web developement <webdev@rigel.piment-noir.org>
comicsporn/models.py

index 9a3f528759f45aad28a13bac0f754d820e93715f..3a31bfb21634585ec202d7fa224bea0286d835b9 100644 (file)
@@ -17,7 +17,7 @@ class Style(models.Model):
        TAG_NAME_CHOICES = (
                 (_('MG'), _('Manga')),
                 (_('HF'), _('Heroic Fantasy')),
-    )
+        )
        name = models.CharField(_('name'), max_length=30, choices=TAG_NAME_CHOICES)
        def __unicode__(self):
                return self.name
@@ -37,9 +37,9 @@ class UserProfile(models.Model):
         TODO: Which fields are required to interact with the ads publisher ?
         """
        ADS_PUBLISHER_CHOICES = (
-               ('AS', 'Advert Stream'),
+           ('AS', 'Advert Stream'),
             ('TJ', 'Traffic Junky'),
-    )
+        )
        ads_publisher = models.CharField(_('Ads publisher'), max_length=50, choices=ADS_PUBLISHER_CHOICES)
        ads_publisher_login = models.CharField(_('Ads publisher login'), max_length=50)
 
@@ -51,7 +51,7 @@ class UserProfile(models.Model):
 
 class Comic_block(models.Model):
        """
-       Let's view a comics as an images series
+       Let's view a comics as an image series
        """
        name = models.CharField(_('name'), max_length=50)  # probably not useful, it's just simpler to assemble afterwards for author
        number = models.IntegerField(_('number'))