Skip to content

Commit 01e923c

Browse files
author
Karl Ranna
authored
fix(unlock): parse new unlock output (#755)
1 parent a67226d commit 01e923c

File tree

1 file changed

+1
-1
lines changed
  • images/utils/launcher/node

1 file changed

+1
-1
lines changed

images/utils/launcher/node/xud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def extract_exception(self, cmd: str, output: str):
119119
else:
120120
return Exception("Unexpected xucli restore error: " + output.strip())
121121
elif cmd.startswith("unlock"):
122-
if "xud was unlocked succesfully" in output:
122+
if "xud was unlocked successfully" in output:
123123
return None
124124
elif output == "Enter master xud password: ":
125125
return KeyboardInterrupt()

0 commit comments

Comments
 (0)