mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-23 17:47:31 +00:00
fix more DeprecationWarnings
This commit is contained in:
parent
5b6357d472
commit
441da52b51
2 changed files with 3 additions and 2 deletions
|
@ -304,7 +304,8 @@ class Console(QtWidgets.QPlainTextEdit):
|
||||||
|
|
||||||
def completions(self):
|
def completions(self):
|
||||||
cmd = self.getCommand()
|
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)]
|
beginning = cmd[0:-len(lastword)]
|
||||||
|
|
||||||
path = lastword.split('.')
|
path = lastword.split('.')
|
||||||
|
|
|
@ -37,7 +37,7 @@ from .qrtextedit import ScanQRTextEdit
|
||||||
from .completion_text_edit import CompletionTextEdit
|
from .completion_text_edit import CompletionTextEdit
|
||||||
from . import util
|
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;}"
|
frozen_style = "QWidget { background-color:none; border:none;}"
|
||||||
normal_style = "QPlainTextEdit { }"
|
normal_style = "QPlainTextEdit { }"
|
||||||
|
|
Loading…
Add table
Reference in a new issue