mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-20 04:58:32 +02:00
Fix failed test scenarios for folder journal.
This commit is contained in:
parent
f4e40fc43d
commit
866634035a
2 changed files with 1 additions and 1 deletions
|
@ -258,7 +258,7 @@ def check_journal_entries(context, number, journal_name="default"):
|
|||
def list_journal_directory(context, journal="default"):
|
||||
files=[]
|
||||
with open(install.CONFIG_FILE_PATH) as config_file:
|
||||
config = yaml.load(config_file)
|
||||
config = yaml.load(config_file, Loader=yaml.FullLoader)
|
||||
journal_path = config['journals'][journal]
|
||||
for root, dirnames, f in os.walk(journal_path):
|
||||
for file in f:
|
||||
|
|
Loading…
Add table
Reference in a new issue