Skip to content

Commit

Permalink
Formatting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dplocki committed May 13, 2024
1 parent 565a624 commit 97781ac
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion podcast_downloader/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,10 @@ def load_the_last_run_date_store_now(marker_file_path, now):

access_time = time.localtime(os.path.getatime(marker_file_path))

logger.info('Last time the script has been run: %s', time.strftime("%Y-%m-%d %H:%M:%S", access_time))
logger.info(
"Last time the script has been run: %s",
time.strftime("%Y-%m-%d %H:%M:%S", access_time),
)

os.utime(marker_file_path, times=(time.mktime(now), time.mktime(now)))
return access_time
Expand Down

0 comments on commit 97781ac

Please sign in to comment.