You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Remove obsolete slugify dependency (#44)
Django's native slugify function used to drop non-ASCII characters, like German umlauts. However, this seems to be resolved. The behavior is now similar to https://github.com/mozilla/unicode-slugify.
Change slugs to ascii only (#5)
Some tools like the AWS CLI don't do well with unicode file names
even though AWS S3 does not have a problem with them. It is saver
to use ASCII characters only. Which is the default for Django's
builtin slugify method anyways.