mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2026-04-29 02:12:10 +02:00
Change default for post_process_apply_filename_safepattern to false.
This commit is contained in:
parent
8a84043d29
commit
c7bbb765b2
2 changed files with 2 additions and 2 deletions
|
|
@ -378,7 +378,7 @@ def do_download(arg,
|
|||
output_filename = write_story(configuration, adapter, options.format, options.metaonly)
|
||||
|
||||
if not options.metaonly and adapter.getConfig('post_process_cmd'):
|
||||
if adapter.getConfig('post_process_apply_filename_safepattern',True):
|
||||
if adapter.getConfig('post_process_apply_filename_safepattern'):
|
||||
metadata = adapter.story.get_filename_safe_metadata()
|
||||
else:
|
||||
metadata = adapter.story.getAllMetadata()
|
||||
|
|
|
|||
|
|
@ -198,7 +198,7 @@ connect_timeout:60.0
|
|||
## characters. When true, the output_filename_safepattern will be
|
||||
## applied to each metadata item passed to post_process_cmd before
|
||||
## it's called.
|
||||
post_process_apply_filename_safepattern:true
|
||||
#post_process_apply_filename_safepattern:false
|
||||
|
||||
## Use regular expressions to find and replace (or remove) metadata.
|
||||
## For example, you could change Sci-Fi=>SF, remove *-Centered tags,
|
||||
|
|
|
|||
Loading…
Reference in a new issue