atoponce / d-note

Self destructing encrypted notes
Other
130 stars 43 forks source link

Catch Unicode Error #11

Closed atoponce closed 10 years ago

atoponce commented 10 years ago

The application should be able to handle Unicode input. Currently, it throws the following error:

  File "/usr/share/pyshared/flask/app.py", line 1836, in __call__
    return self.wsgi_app(environ, start_response)
  File "/usr/share/pyshared/flask/app.py", line 1820, in wsgi_app
    response = self.make_response(self.handle_exception(e))
  File "/usr/share/pyshared/flask/app.py", line 1403, in handle_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/share/pyshared/flask/app.py", line 1817, in wsgi_app
    response = self.full_dispatch_request()
  File "/usr/share/pyshared/flask/app.py", line 1477, in full_dispatch_request
    rv = self.handle_user_exception(e)
  File "/usr/share/pyshared/flask/app.py", line 1381, in handle_user_exception
    reraise(exc_type, exc_value, tb)
  File "/usr/share/pyshared/flask/app.py", line 1475, in full_dispatch_request
    rv = self.dispatch_request()
  File "/usr/share/pyshared/flask/app.py", line 1461, in dispatch_request
    return self.view_functions[rule.endpoint](**req.view_args)
  File "/home/aaron/src/d-note/d-note.py", line 129, in show_post
    note_encrypt(key, plaintext, new_url, key_file)
  File "/home/aaron/src/d-note/d-note.py", line 68, in note_encrypt
    plain = pad(zlib.compress(plaintext))
  UnicodeEncodeError: 'ascii' codec can't encode character u'\u2019' in position 202: ordinal not in range(128)