change osusers.admin.UserCreationForm.save_m2m

- replace pass with a doc string to explain why this method does nothing
This commit is contained in:
Jan Dittberner 2014-06-01 22:18:16 +02:00
parent 773dbea0fe
commit 5cc86b4790

View file

@ -84,7 +84,10 @@ class UserCreationForm(forms.ModelForm):
return user
def save_m2m(self):
pass
"""
No additional groups are created when this form is saved, so this
method just does nothing.
"""
class UserAdmin(admin.ModelAdmin):