Changes between Initial Version and Version 1 of Ticket #27725


Ignore:
Timestamp:
Jan 11, 2017, 10:37:20 AM (8 years ago)
Author:
paulfab
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #27725 – Description

    initial v1  
    22requests.post("https://slack.com/api/chat.postMessage", data=  {"channel": "maison"})
    33it fails in the django shell (python manage.py shell) with the error :
     4
     5{{{
    46InvalidCodepoint: Codepoint U+002A at position 1 of u'*' not allowed
     7}}}
     8
    59
    610but it doesnt fail in the python shell
     
    1115
    1216complete trace of the error is :
     17
     18{{{
    1319Traceback (most recent call last):
    1420  File "<console>", line 1, in <module>
     
    4450    raise InvalidCodepoint('Codepoint {0} at position {1} of {2} not allowed'.format(_unot(cp_value), pos+1, repr(label)))
    4551InvalidCodepoint: Codepoint U+002A at position 1 of u'*' not allowed
     52}}}
Back to Top