Skip to content

Commit 5f8e44b

Browse files
authored
Update btcrecover.py
1 parent f95cecf commit 5f8e44b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

btcrecover.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,9 @@
3535
print("Starting", btcrpass.full_version(),
3636
file=sys.stderr if any(a.startswith("--listp") for a in sys.argv[1:]) else sys.stdout) # --listpass
3737

38-
btcrpass.parse_arguments(sys.argv[1:])
39-
(password_found, not_found_msg) = btcrpass.main()
38+
context = btcrpass.RecoveryContext()
39+
btcrpass.parse_arguments(context, sys.argv[1:])
40+
(password_found, not_found_msg) = btcrpass.main(context)
4041

4142
if isinstance(password_found, str):
4243
print()

0 commit comments

Comments
 (0)