Skip to content

Commit

Permalink
Fix simple typo: concurrecny -> concurrency
Browse files Browse the repository at this point in the history
Closes #664
  • Loading branch information
timgates42 authored and jdufresne committed Feb 23, 2020
1 parent 954d836 commit 20461d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion taggit/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def save(self, *args, **kwargs):
slug = self.slugify(self.name, i)
if slug not in slugs:
self.slug = slug
# We purposely ignore concurrecny issues here for now.
# We purposely ignore concurrency issues here for now.
# (That is, till we found a nice solution...)
return super().save(*args, **kwargs)
i += 1
Expand Down

0 comments on commit 20461d2

Please sign in to comment.