Skip to content

Commit

Permalink
change log message already save dot real file path
Browse files Browse the repository at this point in the history
  • Loading branch information
aSauerwein committed Jun 23, 2024
1 parent b9b0cd5 commit cc7f39a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions download_v2.py
Original file line number Diff line number Diff line change
@@ -242,7 +242,7 @@ def interactive():
prev_month = cur_month - timedelta(days=1)

user_choice_month = input(
"Bitte gewünschten Monat im Format 'YYYY-MM' bzw. 'cur' oder 'prev' oder 'all' für aktuellen oder vorherigen Monat oder alles eingeben [prev]: " # noqa
"Bitte gewünschten Monat im Format 'YYYY-MM' bzw. 'cur' oder 'prev' oder 'all' für aktuellen oder vorherigen Monat oder alles eingeben [prev]: " # noqa
)
user_choice_month = user_choice_month.strip().lower()

@@ -393,7 +393,7 @@ def save_subscription_invoice(subscription_invoices, desired_invoice_date, vin):
)
if local_file_path.exists():
# file already downloaded, skip
logger.info(f"Invoice {invoice['InvoiceFileName']} already saved")
logger.info(f"Invoice {local_file_path} already saved")
continue

logger.info(f"Downloading {invoice['InvoiceFileName']}")

0 comments on commit cc7f39a

Please sign in to comment.