From fbad9bf83e9b687a1ca2715778072d39154d15bb Mon Sep 17 00:00:00 2001 From: signal-9 <66137938+signal-9@users.noreply.github.com> Date: Tue, 15 Dec 2020 14:00:53 -0500 Subject: [PATCH] Update output.py (#1117) Typo, us > use --- jrnl/output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jrnl/output.py b/jrnl/output.py index b645d6d1..624dd8be 100644 --- a/jrnl/output.py +++ b/jrnl/output.py @@ -10,7 +10,7 @@ def deprecated_cmd(old_cmd, new_cmd, callback=None, **kwargs): warning_msg = f""" The command {old_cmd} is deprecated and will be removed from jrnl soon. - Please us {new_cmd} instead. + Please use {new_cmd} instead. """ warning_msg = textwrap.dedent(warning_msg) logging.warning(warning_msg)