Ticket #6301: encoding.diff

File encoding.diff, 415 bytes (added by Simon Greenhill <dev@…>, 16 years ago)
  • django/utils/encoding.py

     
    9898    # section 3.1 of RFC 3987.
    9999    if iri is None:
    100100        return iri
    101     return urllib.quote(smart_str(iri), safe='/#%[]=:;$&()+,!?')
     101    return urllib.quote(smart_str(iri), safe='/#%[]=:;$&()+,!?*')
    102102
Back to Top