From c5c87505879c526f70ef97b52e982db3fb80c434 Mon Sep 17 00:00:00 2001 From: benton Date: Sun, 12 Sep 2021 19:41:59 -0500 Subject: [PATCH] lowercased file names, tweaked a bit of output --- lib/handle_aax.py | 2 +- LICENSE => license | 0 README.md => readme.md | 0 3 files changed, 1 insertion(+), 1 deletion(-) rename LICENSE => license (100%) rename README.md => readme.md (100%) diff --git a/lib/handle_aax.py b/lib/handle_aax.py index 698b071..3ea5a76 100644 --- a/lib/handle_aax.py +++ b/lib/handle_aax.py @@ -31,7 +31,7 @@ def handle_aax(aax_path): password = click.prompt("Enter your Audible account's password", hide_input=True) locale = click.prompt("Enter your locale (e.g. 'us', 'ca', 'jp', etc)") - open_fake_terminal(f'Authenticator.from_login("{email}").get_activation_bytes()') + open_fake_terminal(f'audible.auth.Authenticator.from_login("{email}", "{locale}").get_activation_bytes()') try: authcode = audible.auth.Authenticator.from_login( diff --git a/LICENSE b/license similarity index 100% rename from LICENSE rename to license diff --git a/README.md b/readme.md similarity index 100% rename from README.md rename to readme.md