From 520e2cfcdd94c67ebfa8727065880c648d53858f Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sat, 7 Jun 2025 14:21:22 +0100 Subject: [PATCH] Core: Fix up warning message --- volatility3/framework/deprecation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility3/framework/deprecation.py b/volatility3/framework/deprecation.py index 4866a5a6e..90fa9bce0 100644 --- a/volatility3/framework/deprecation.py +++ b/volatility3/framework/deprecation.py @@ -139,7 +139,7 @@ class PluginRenameClass: attr, method_being_removed( removal_date=removal_date, - message=f"This plugin has been renamed, please call {replacement_class.__module__}.{replacement_class.__qualname__} rather than deprecated_class_name.", + message=f"This plugin has been renamed, please call {replacement_class.__module__}.{replacement_class.__qualname__} rather than {deprecated_class_name}.", )(value), ) elif not attr.startswith("__"):