diff options
author | Nishanth Amuluru | 2011-01-06 17:14:52 +0530 |
---|---|---|
committer | Nishanth Amuluru | 2011-01-06 17:14:52 +0530 |
commit | 1e6134cb3d5f19b72387db7156d89539eb3cc287 (patch) | |
tree | f8bc789993d4c8e96bdb87c5f046ea70895bf3af | |
parent | f7d1d873d68a6c25e6aeb372881d0b700e812a9e (diff) | |
download | pytask-1e6134cb3d5f19b72387db7156d89539eb3cc287.tar.gz pytask-1e6134cb3d5f19b72387db7156d89539eb3cc287.tar.bz2 pytask-1e6134cb3d5f19b72387db7156d89539eb3cc287.zip |
Fixed a typo
-rwxr-xr-x | profile/models.py | 2 | ||||
-rwxr-xr-x | settings.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/profile/models.py b/profile/models.py index 9c87cd6..14022aa 100755 --- a/profile/models.py +++ b/profile/models.py @@ -13,7 +13,7 @@ ROLE_CHOICES = ( ("DC", "Request sent by Director \ to a user at lower level, asking him to act as a director"), ("MG", "Request sent by Manager \ - to a user at lower level, asking him to act as a manager"), + to a user at lower level, asking him to act as a manager"),) class Profile(models.Model): diff --git a/settings.py b/settings.py index f3cd4a0..940a14f 100755 --- a/settings.py +++ b/settings.py @@ -92,6 +92,7 @@ INSTALLED_APPS = ( 'django.contrib.messages', 'registration', 'tagging', + 'pytask.profile', # Uncomment the next line to enable the admin: # 'django.contrib.admin', # Uncomment the next line to enable admin documentation: |