fix more DeprecationWarnings

This commit is contained in:
SomberNight 2019-03-27 19:27:45 +01:00
parent 5b6357d472
commit 441da52b51
No known key found for this signature in database
GPG key ID: B33B5F232C6271E9
2 changed files with 3 additions and 2 deletions

View file

@ -304,7 +304,8 @@ class Console(QtWidgets.QPlainTextEdit):
def completions(self):
cmd = self.getCommand()
lastword = re.split(' |\(|\)',cmd)[-1]
# note for regex: new words start after ' ' or '(' or ')'
lastword = re.split(r'[ ()]', cmd)[-1]
beginning = cmd[0:-len(lastword)]
path = lastword.split('.')

View file

@ -37,7 +37,7 @@ from .qrtextedit import ScanQRTextEdit
from .completion_text_edit import CompletionTextEdit
from . import util
RE_ALIAS = '(.*?)\s*\<([0-9A-Za-z]{1,})\>'
RE_ALIAS = r'(.*?)\s*\<([0-9A-Za-z]{1,})\>'
frozen_style = "QWidget { background-color:none; border:none;}"
normal_style = "QPlainTextEdit { }"