We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f95cecf commit 5f8e44bCopy full SHA for 5f8e44b
btcrecover.py
@@ -35,8 +35,9 @@
35
print("Starting", btcrpass.full_version(),
36
file=sys.stderr if any(a.startswith("--listp") for a in sys.argv[1:]) else sys.stdout) # --listpass
37
38
- btcrpass.parse_arguments(sys.argv[1:])
39
- (password_found, not_found_msg) = btcrpass.main()
+ context = btcrpass.RecoveryContext()
+ btcrpass.parse_arguments(context, sys.argv[1:])
40
+ (password_found, not_found_msg) = btcrpass.main(context)
41
42
if isinstance(password_found, str):
43
print()
0 commit comments