Skip to content

Commit b151777

Browse files
committed
qt: Include '/*' in getkeypool path regex
1 parent 593acb0 commit b151777

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

hwilib/_gui.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ def __init__(self, opts):
239239
self.ui.internal_checkbox.setChecked(opts['internal'])
240240
self.ui.keypool_checkbox.setChecked(opts['keypool'])
241241
self.ui.account_spinbox.setValue(opts['account'])
242-
self.ui.path_lineedit.setValidator(QRegExpValidator(QRegExp("m(/[0-9]+['Hh]?)+"), None))
242+
self.ui.path_lineedit.setValidator(QRegExpValidator(QRegExp("m(/[0-9]+['Hh]?)+/\*"), None))
243243
if opts['account_used']:
244244
self.ui.account_radio.setChecked(True)
245245
self.ui.path_radio.setChecked(False)

0 commit comments

Comments
 (0)