Fixed statusbar message on error in namecoin name search

This commit is contained in:
Dmitri Bogomolov 2017-10-12 16:13:59 +03:00
parent 59d1309a9e
commit 9cffd50de8
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13
1 changed files with 1 additions and 1 deletions

View File

@ -1999,7 +1999,7 @@ class MyForm(settingsmixin.SMainWindow):
err, addr = nc.query(identities[-1].strip())
if err is not None:
self.statusBar().showMessage(_translate(
"MainWindow", "Error: " + err), 10000)
"MainWindow", "Error: %1").arg(err), 10000)
else:
identities[-1] = addr
self.ui.lineEditTo.setText("; ".join(identities))