--- a/ViewManager/ViewManager.py Fri Apr 13 22:32:32 2018 +0200 +++ b/ViewManager/ViewManager.py Sat Apr 14 15:08:24 2018 +0200 @@ -5830,7 +5830,7 @@ line, index = aw.getCursorPosition() text = aw.text(line) - reg = QRegExp('[^\w_]') + reg = QRegExp(r'[^\w_]') end = reg.indexIn(text, index) if end > index: ext = text[index:end] @@ -7033,7 +7033,7 @@ if self.activeWindow() is not None and \ self.activeWindow().getFileName(): ext = os.path.splitext(self.activeWindow().getFileName())[1] - rx = QRegExp(".*\*\.{0}[ )].*".format(ext[1:])) + rx = QRegExp(r".*\*\.{0}[ )].*".format(ext[1:])) import QScintilla.Lexers filters = QScintilla.Lexers.getOpenFileFiltersList() index = -1