s/profile/profiles/

This commit is contained in:
James Turk 2015-04-07 15:04:40 -04:00
parent 077d300bfb
commit e9b9abef20
8 changed files with 4 additions and 4 deletions

View File

@ -1 +0,0 @@
default_app_config = 'profile.apps.ProfileConfig'

1
profiles/__init__.py Normal file
View File

@ -0,0 +1 @@
default_app_config = 'profiles.apps.ProfileConfig'

View File

@ -11,8 +11,8 @@ def create_profile(sender, created, instance, **kwargs):
class ProfileConfig(AppConfig):
name = 'profile'
app_label = 'profile'
name = 'profiles'
app_label = 'profiles'
def ready(self):
post_save.connect(create_profile, sender=User)

View File

@ -21,7 +21,7 @@ INSTALLED_APPS = (
'django.contrib.messages',
'django.contrib.staticfiles',
'django_gravatar',
'profile',
'profiles',
'lifting',
)