summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Godwin <andrew@aeracode.org>2014-08-04 14:18:22 +1000
committerAndrew Godwin <andrew@aeracode.org>2014-08-04 14:18:22 +1000
commitd723da383da81de6d2b3b149eb8ced80d9d2c29c (patch)
tree7febbd66a12d482930a94afd32bb2f57f1cdea84
parentd77f92fa1ee473160f50ab8482876e4bab33f8cf (diff)
1.7-specific fix to help text to stop extra migration
-rw-r--r--django/contrib/auth/migrations/0001_initial.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/django/contrib/auth/migrations/0001_initial.py b/django/contrib/auth/migrations/0001_initial.py
index 6fe7411e9f..4d83b7d746 100644
--- a/django/contrib/auth/migrations/0001_initial.py
+++ b/django/contrib/auth/migrations/0001_initial.py
@@ -54,7 +54,7 @@ class Migration(migrations.Migration):
('is_staff', models.BooleanField(default=False, help_text='Designates whether the user can log into this admin site.', verbose_name='staff status')),
('is_active', models.BooleanField(default=True, help_text='Designates whether this user should be treated as active. Unselect this instead of deleting accounts.', verbose_name='active')),
('date_joined', models.DateTimeField(default=timezone.now, verbose_name='date joined')),
- ('groups', models.ManyToManyField(to='auth.Group', verbose_name='groups', blank=True, help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.')),
+ ('groups', models.ManyToManyField(to='auth.Group', verbose_name='groups', blank=True, help_text='The groups this user belongs to. A user will get all permissions granted to each of his/her group.')),
('user_permissions', models.ManyToManyField(to='auth.Permission', verbose_name='user permissions', blank=True, help_text='Specific permissions for this user.')),
],
options={