- fixed an issue regarding the statusbar pixmap selection

This commit is contained in:
Marius
2020-04-24 08:37:47 +03:00
parent 527dcf6270
commit 3b8b4254b9
3 changed files with 4 additions and 3 deletions

View File

@@ -3706,7 +3706,7 @@ class App(QtCore.QObject):
"""
# Type of message in brackets at the beginning of the message.
match = re.search("\[([^\]]+)\](.*)", msg)
match = re.search(r"\[(.*)\](.*)", msg)
if match:
level = match.group(1)
msg_ = match.group(2)