Add tracers after last tracer Travis was hanging on in last commit

This commit is contained in:
Micah Jerome Ellison 2020-05-24 14:33:02 -07:00
parent 84569e590c
commit 6777ab0329

View file

@ -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]
)