Changes between Initial Version and Version 1 of Ticket #27725
- Timestamp:
- Jan 11, 2017, 10:37:20 AM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #27725 – Description
initial v1 2 2 requests.post("https://slack.com/api/chat.postMessage", data= {"channel": "maison"}) 3 3 it fails in the django shell (python manage.py shell) with the error : 4 5 {{{ 4 6 InvalidCodepoint: Codepoint U+002A at position 1 of u'*' not allowed 7 }}} 8 5 9 6 10 but it doesnt fail in the python shell … … 11 15 12 16 complete trace of the error is : 17 18 {{{ 13 19 Traceback (most recent call last): 14 20 File "<console>", line 1, in <module> … … 44 50 raise InvalidCodepoint('Codepoint {0} at position {1} of {2} not allowed'.format(_unot(cp_value), pos+1, repr(label))) 45 51 InvalidCodepoint: Codepoint U+002A at position 1 of u'*' not allowed 52 }}}