* Fixed IndexError if a non existent field gets queried for a value. Using dict.get to either get a value or provide a reasonable default * Removed list construction around new_key value * Clean up source code with 80x25 terminal and vim (complies with PEP-8) * Added some docstrings
10 lines
308 B
Python
10 lines
308 B
Python
def create_profile(sender, instance, signal, created, **kwargs):
|
|
from account.models import UserProfile
|
|
|
|
if created:
|
|
UserProfile(user=instance).save()
|
|
|
|
|
|
def delete_profile(sender, instance, signal, **kwargs):
|
|
from account.models import UserProfile
|
|
UserProfile(user=instance).delete()
|