From 23e6516cd34be7602ee5c941dc0dc8df10e48f65 Mon Sep 17 00:00:00 2001 From: Andrew Case Date: Fri, 11 Sep 2020 11:37:16 -0500 Subject: [PATCH] Add missing commas to cli warnings so they appear across newlines in output --- volatility/cli/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/volatility/cli/__init__.py b/volatility/cli/__init__.py index b63d2ded9..1ba5fa83e 100644 --- a/volatility/cli/__init__.py +++ b/volatility/cli/__init__.py @@ -351,15 +351,15 @@ class CommandLine(interfaces.plugins.FileConsumerInterface): general = "Volatility experienced a symbol-related issue:" detail = "{}{}{}: {}".format(excp.table_name, constants.BANG, excp.symbol_name, excp) caused_by = [ - "An invalid symbol table" - "A plugin requesting a bad symbol" - "A plugin requesting a symbol from the wrong table" + "An invalid symbol table", + "A plugin requesting a bad symbol", + "A plugin requesting a symbol from the wrong table", ] elif isinstance(excp, exceptions.SymbolSpaceError): general = "Volatility experienced an issue related to a symbol table:" detail = "{}".format(excp) caused_by = [ - "An invalid symbol table", "A plugin requesting a bad symbol" + "An invalid symbol table", "A plugin requesting a bad symbol", "A plugin requesting a symbol from the wrong table" ] elif isinstance(excp, exceptions.LayerException):