Giter VIP home page Giter VIP logo

Comments (5)

cnf avatar cnf commented on July 2, 2024

I am having a similar problem

Traceback (most recent call last):
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/flask/app.py", line 1701, in __call__
    return self.wsgi_app(environ, start_response)
  File "/home/cnf/Projects/Kangaroot/kassets/kassets/rev_proxied.py", line 35, in __call__
    return self.app(environ, start_response)
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/flask/app.py", line 1689, in wsgi_app
    response = self.make_response(self.handle_exception(e))
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/flask/app.py", line 1687, in wsgi_app
    response = self.full_dispatch_request()
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/flask/app.py", line 1362, in full_dispatch_request
    response = self.process_response(response)
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/flask/app.py", line 1564, in process_response
    response = handler(response)
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/flask_debugtoolbar/__init__.py", line 171, in process_response
    toolbar_html = self.debug_toolbars[real_request].render_toolbar()
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/flask_debugtoolbar/toolbar.py", line 74, in render_toolbar
    return template.render(**context)
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/jinja2/environment.py", line 894, in render
    return self.environment.handle_exception(exc_info, True)
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/flask_debugtoolbar/templates/base.html", line 49, in top-level template code
    {{ panel.content()|safe }}
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/flask_debugtoolbar/panels/template.py", line 67, in content
    'editable': is_editor_enabled(),
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/flask_debugtoolbar/panels/__init__.py", line 28, in render
    return template.render(**context)
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/jinja2/environment.py", line 894, in render
    return self.environment.handle_exception(exc_info, True)
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/flask_debugtoolbar/templates/panels/template.html", line 18, in top-level template code
    <td>{{ v|printable }}</td>
  File "/home/cnf/.virtualenvs/kassets/lib/python2.7/site-packages/flask_debugtoolbar/__init__.py", line 34, in _printable
    return repr(value)
UnicodeEncodeError: 'ascii' codec can't encode character u'\u2122' in position 32: ordinal not in range(128)

from flask-debugtoolbar.

arachtchoupani avatar arachtchoupani commented on July 2, 2024

Same issue.

from flask-debugtoolbar.

mgood avatar mgood commented on July 2, 2024

Yes, the original issue happens on the SQL panel when the SECRET_KEY contains non-ascii characters. This breaks the code generating a signature for the query.

I decided to go ahead and just replace the query signing with the "itsdangerous" module that Flask is now using for signing cookies. That seemed cleaner that just patching up the current signing code.

from flask-debugtoolbar.

mgood avatar mgood commented on July 2, 2024

cnf: the error you're seeing is a duplicate of #39. The root cause is a bad __repr__ in your code or another library. The __repr__ method should not be returning a unicode object. I provided a little more detail on the proposed patch 20a302c.

I may reconsider catching this and showing an error message instead, but to really fix the issue you should make sure the class implemented __repr__ returns a Python str object instead of unicode.

from flask-debugtoolbar.

cnf avatar cnf commented on July 2, 2024

Ah fair enough... I'll see where that comes from...

thanks!

from flask-debugtoolbar.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.