Source indentation
authorJérôme Benoit <jerome.benoit@grenouille.com>
Sun, 24 Nov 2013 11:51:48 +0000 (12:51 +0100)
committerJérôme Benoit <jerome.benoit@grenouille.com>
Sun, 24 Nov 2013 11:51:48 +0000 (12:51 +0100)
Signed-off-by: Jérôme Benoit <jerome.benoit@grenouille.com>
comicsporn/admin.py
comicsporn/models.py
manage.py
settings.py

index 45d0e808ea314d471460685dca1cf48bfb087965..00cbd7de54dd06680bac1173e08dd1d510ec2bcf 100644 (file)
@@ -14,7 +14,7 @@ class UserProfileInline(admin.StackedInline):
     verbose_name_plural = _('Users profiles')
 
 class UserAdmin(UserAdmin):
-    inlines = (UserProfileInline, )
+    inlines = (UserProfileInline,)
 
 admin.site.unregister(User)
 admin.site.register(User, UserAdmin)
@@ -25,9 +25,9 @@ class Comic_blockInline(admin.TabularInline):
 
 class ComicAdmin(admin.ModelAdmin):
     fieldsets = [
-               (_('Title'),    {'fields': ['title']}), 
-               (_('Online'),   {'fields': ['is_online']}), 
-               (_('Comic block'),      {'fields': ['blocks']}),
+               (_('Title'),    {'fields': ['title']}),
+               (_('Online'),   {'fields': ['is_online']}),
+               (_('Comic block'),      {'fields': ['blocks']}),
        ]
     inlines = [
                Comic_blockInline,
index e162d0447e8a5383b4c9fc7c3ab930856c56a82c..938c9e7036e6c9a0792ff95297b525d0938b858d 100644 (file)
@@ -52,7 +52,7 @@ class Comic_block(models.Model):
        """
        Let's view a comics as an images serie
        """
-       name = models.CharField(_('name'), max_length=50) # probably not useful, it's just simplier to assemble afterwards for author
+       name = models.CharField(_('name'), max_length=50)  # probably not useful, it's just simplier to assemble afterwards for author
        number = models.IntegerField(_('number'))
        content = models.ImageField(upload_to='block_contents')
        # TODO: probably not useful
index 3e4eedc9ff5862c99e999b544a5b34c4e9af877a..b50edd786aea66e02476af6b8b6f9d1f400eb777 100644 (file)
--- a/manage.py
+++ b/manage.py
@@ -2,7 +2,7 @@
 from django.core.management import execute_manager
 import imp
 try:
-    imp.find_module('settings') # Assumed to be in the same directory.
+    imp.find_module('settings')  # Assumed to be in the same directory.
 except ImportError:
     import sys
     sys.stderr.write("Error: Can't find the file 'settings.py' in the directory containing %r. It appears you've customized things.\nYou'll have to run django-admin.py, passing it your settings module.\n" % __file__)
index 149f00e7741a2a83baa93bfd00eb4ab4b8e2e247..25c4a7ed071bd9f8248dc40aa194241bec4f8ea2 100644 (file)
@@ -12,12 +12,12 @@ MANAGERS = ADMINS
 
 DATABASES = {
     'default': {
-        'ENGINE': 'django.db.backends.postgresql_psycopg2', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
-        'NAME': 'django',                      # Or path to database file if using sqlite3.
-        'USER': 'django',                      # Not used with sqlite3.
-        'PASSWORD': 'django',                  # Not used with sqlite3.
-        'HOST': 'localhost',                      # Set to empty string for localhost. Not used with sqlite3.
-        'PORT': '',                      # Set to empty string for default. Not used with sqlite3.
+        'ENGINE': 'django.db.backends.postgresql_psycopg2',  # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
+        'NAME': 'django',  # Or path to database file if using sqlite3.
+        'USER': 'django',  # Not used with sqlite3.
+        'PASSWORD': 'django',  # Not used with sqlite3.
+        'HOST': 'localhost',  # Set to empty string for localhost. Not used with sqlite3.
+        'PORT': '',  # Set to empty string for default. Not used with sqlite3.
     }
 }