mirror of
https://github.com/vale981/kindle_fetch
synced 2025-03-04 08:31:38 -05:00
use underscores for spaces instead of removing them entirely
This commit is contained in:
parent
4296f6b6c4
commit
800a291ed6
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ async def wait_for_new_message(imap_client, options: Options):
|
|||
logger.debug(str(body))
|
||||
continue
|
||||
|
||||
filename = f"{doc_title.replace(' ','')}"
|
||||
filename = f"{doc_title.replace(' ','_')}"
|
||||
|
||||
if page:
|
||||
filename += f"_{page}_pages"
|
||||
|
|
Loading…
Add table
Reference in a new issue