From 39af47fbf9d386a2068745004fc0e39b30c2bc6e Mon Sep 17 00:00:00 2001 From: Sergey Vilgelm Date: Fri, 15 Nov 2019 09:37:14 -0600 Subject: [PATCH] Add a new line after in Analyze command Adding a new line after the message "Evaluating database entries against HIBP file, this will take a while..." helps to separate a report and the comment. --- src/cli/Analyze.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cli/Analyze.cpp b/src/cli/Analyze.cpp index 3e6edcebf..7fc00c8ef 100644 --- a/src/cli/Analyze.cpp +++ b/src/cli/Analyze.cpp @@ -55,7 +55,8 @@ int Analyze::executeWithDatabase(QSharedPointer database, QSharedPoint return EXIT_FAILURE; } - outputTextStream << QObject::tr("Evaluating database entries against HIBP file, this will take a while..."); + outputTextStream << QObject::tr("Evaluating database entries against HIBP file, this will take a while...") + << endl; QList> findings; QString error;