From 28a278695f1836f7a23fc0d9be8f90bbaf7ee8b4 Mon Sep 17 00:00:00 2001 From: Jonathan van der Steege Date: Mon, 23 May 2022 22:48:43 +0200 Subject: [PATCH] Code format correction --- jrnl/Journal.py | 1 + 1 file changed, 1 insertion(+) diff --git a/jrnl/Journal.py b/jrnl/Journal.py index 3c677770..6a0920df 100644 --- a/jrnl/Journal.py +++ b/jrnl/Journal.py @@ -436,6 +436,7 @@ def open_journal(journal_name, config, legacy=False): return LegacyJournal(journal_name, **config).open() if config["journal"].endswith("/") or config["journal"].endswith("\\"): from . import FolderJournal + return FolderJournal.Folder(journal_name, **config).open() return PlainJournal(journal_name, **config).open()