From 62ae47cc37819e46e3060b12fd80a8292afc7612 Mon Sep 17 00:00:00 2001 From: Jonathan Wren Date: Sat, 13 Aug 2022 14:41:20 -0700 Subject: [PATCH] small change to make commands more similar --- jrnl/commands.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jrnl/commands.py b/jrnl/commands.py index dc773923..ce68a9ad 100644 --- a/jrnl/commands.py +++ b/jrnl/commands.py @@ -26,10 +26,11 @@ from jrnl.prompt import create_password def preconfig_diagnostic(_): + from jrnl import __title__ from jrnl import __version__ print( - f"jrnl: {__version__}\n" + f"{__title__}: {__version__}\n" f"Python: {sys.version}\n" f"OS: {platform.system()} {platform.release()}" )