ColinDuquesnoy / QDarkStyleSheet

A dark style sheet for QtWidgets application
Other
2.81k stars 729 forks source link

Fix logging module DeprecationWarning #305

Closed juliangilbey closed 2 years ago

juliangilbey commented 2 years ago

According to https://docs.python.org/3/library/logging.html#logging.Logger.warning the warn() method is deprecated, and it is now giving deprecation warnings. The equivalent warning() method has been present since at least Python 3.5. This patch replaces warn() with warning().

dpizetta commented 2 years ago

Hey @juliangilbey thanks for contributing. I'll merge and also review when those warnings appear. Tks