pallets-eco / flask-debugtoolbar

A toolbar overlay for debugging Flask applications
https://flask-debugtoolbar.readthedocs.io
BSD 3-Clause "New" or "Revised" License
952 stars 146 forks source link

Replace deprecated threading.currentThread with threading.current_thread #179

Closed hugovk closed 2 years ago

hugovk commented 2 years ago

threading.currentThread was deprecated in Python 3.10 (October 2021).

Replace with threading.current_thread, added in Python 2.6 (October 2008).