mirror of
https://github.com/correl/mtgsqlive.git
synced 2024-11-21 19:18:41 +00:00
Missing Key bug fix (#37)
This commit is contained in:
parent
8678f6003a
commit
8eb31aa752
1 changed files with 8 additions and 0 deletions
|
@ -53,6 +53,14 @@ def validate_io_streams(input_file: pathlib.Path, output_dir: Dict) -> bool:
|
|||
:param output_dir: Output dir
|
||||
:return: Good to continue status
|
||||
"""
|
||||
output_dir.update(
|
||||
{
|
||||
"useAllPrices": False,
|
||||
"useAllDeckFiles": False,
|
||||
"useKeywords": False,
|
||||
"useCardTypes": False,
|
||||
}
|
||||
)
|
||||
if input_file.is_file():
|
||||
LOGGER.info("Building using AllPrintings.json master file.")
|
||||
if input_file.parent.joinpath("AllPrices.json").is_file():
|
||||
|
|
Loading…
Reference in a new issue