From fabf924349bfea173183728de7e745aa0c91fadf Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Sun, 24 May 2020 14:51:21 -0700 Subject: [PATCH] One more tracer to confirm that code is hanging on suspected line: raw = sys.stdin.read() --- jrnl/cli.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jrnl/cli.py b/jrnl/cli.py index 59b016bd..c3d0ec14 100644 --- a/jrnl/cli.py +++ b/jrnl/cli.py @@ -401,6 +401,8 @@ def run(manual_args=None): else: sys.exit() + print("still going after mode_compose block", file=sys.stderr) + # Import mode if mode_import: plugins.get_importer(args.import_).import_(journal, args.input)