Skip to content

Commit

Permalink
Merge pull request ASKBOT#893 from rs2/patch-1
Browse files Browse the repository at this point in the history
Fix a tpyo
  • Loading branch information
evgenyfadeev authored Oct 14, 2021
2 parents b902da2 + b06c27e commit 5dbc7c4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ class Command(BaseCommand):
def handle(self, *args, **kwargs):
users = User.objects.all()
count = users.count()
message = 'Ading users to global and personal groups'
message = 'Adding users to global and personal groups'
for user in ProgressBar(users.iterator(), count, message):
user.join_default_groups()

0 comments on commit 5dbc7c4

Please sign in to comment.