99.9% of slugs in the wild use dashes instead of anything else, so an
argument to the slugify function would be pointless. At any rate, you can
always make a wrapper:
def better_slugify(value, seperator='-'):
return slugify(value).replace('-', seperator)
--
You received this message because you are subscribed to the Google Groups
"Django developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/django-developers?hl=en.