From beed68b8bfcd9c777f6f8b8361a0907bf8f02086 Mon Sep 17 00:00:00 2001 From: comet Date: Mon, 27 Jan 2020 17:29:34 -0600 Subject: [PATCH] update --- development/schema_validate.py | 2 +- volatility/framework/plugins/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/development/schema_validate.py b/development/schema_validate.py index 5955787f7..00a74868a 100644 --- a/development/schema_validate.py +++ b/development/schema_validate.py @@ -53,6 +53,6 @@ if __name__ == '__main__': print("[x] File not found: {}".format(filename)) except Exception as e: failures.append(filename) - print("[x] Exception occured: {} ({})".format(filename, repr(e))) + print("[x] Exception occurred: {} ({})".format(filename, repr(e))) print("Failures", failures) diff --git a/volatility/framework/plugins/__init__.py b/volatility/framework/plugins/__init__.py index 5ce22a93b..84c8d465c 100644 --- a/volatility/framework/plugins/__init__.py +++ b/volatility/framework/plugins/__init__.py @@ -44,7 +44,7 @@ def construct_plugin(context: interfaces.context.ContextInterface, if unsatisfied: for error in errors: error_string = [x for x in error.format_exception_only()][-1] - vollog.warning("Automagic exception occured: {}".format(error_string[:-1])) + vollog.warning("Automagic exception occurred: {}".format(error_string[:-1])) vollog.log(constants.LOGLEVEL_V, "".join(error.format(chain = True))) raise exceptions.UnsatisfiedException(unsatisfied)