From 6777ab03295a4cb9020df47d4043d062aed94bbd Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison Date: Sun, 24 May 2020 14:33:02 -0700 Subject: [PATCH] Add tracers after last tracer Travis was hanging on in last commit --- jrnl/util.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jrnl/util.py b/jrnl/util.py index a347aaac..b2885f92 100644 --- a/jrnl/util.py +++ b/jrnl/util.py @@ -164,6 +164,7 @@ def verify_config(config): def get_text_from_editor(config, template=""): + print("get_text_from_editor", file=sys.stderr) filehandle, tmpfile = tempfile.mkstemp(prefix="jrnl", text=True, suffix=".txt") os.close(filehandle) @@ -172,6 +173,8 @@ def get_text_from_editor(config, template=""): f.write(template) try: + print("try subprocess.call in get_text_from_editor", file=sys.stderr) + print(shlex.split(config["editor"], posix="win32" not in sys.platform) + [tmpfile]) subprocess.call( shlex.split(config["editor"], posix="win32" not in sys.platform) + [tmpfile] )