Changes between Initial Version and Version 1 of Ticket #8970


Ignore:
Timestamp:
Jul 12, 2011, 1:01:28 AM (13 years ago)
Author:
Ryan J Ollos
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #8970 – Description

    initial v1  
    1 the plugin currently fails to function under 0.12, if you place a line just above req.send('\n'.join(users).encode('utf-8'), 'text/plain') with req.send_header('Content-Length', len('\n'.join(users).encode('utf-8'))) it will be functional again.
     1the plugin currently fails to function under 0.12, if you place a line just above
     2
     3`req.send('\n'.join(users).encode('utf-8'), 'text/plain')`
     4
     5with:
     6
     7`req.send_header('Content-Length', len('\n'.join(users).encode('utf-8')))`
     8
     9it will be functional again.