FrostyX / tracer

Tracer finds outdated running applications in your system
GNU General Public License v2.0
81 stars 24 forks source link

Fix Python DeprecationWarning: invalid escape sequence #182

Closed jelly closed 2 years ago

jelly commented 2 years ago

Python interperts unicode escape sequences literally when used in a normal string, it is generally recommended to use raw strings for regex and this resolves the deprecation warning.

FrostyX commented 2 years ago

LGTM, thank you.