From 2323e15ec308d9ae9555d79cf178da7b95a3f60d Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Sun, 18 Dec 2016 19:38:22 +0000 Subject: [PATCH] Clarify in the documentation that these updates are transient. --- volatility/framework/interfaces/objects.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/interfaces/objects.py b/volatility/framework/interfaces/objects.py index b0e1ae682..9bb0dba68 100644 --- a/volatility/framework/interfaces/objects.py +++ b/volatility/framework/interfaces/objects.py @@ -171,7 +171,7 @@ class Template(validity.ValidityRoutines): return clone def update_vol(self, **new_arguments): - """Updates the keyword arguments""" + """Updates the keyword arguments with values that will not be carried across to clones""" self._vol.update(new_arguments) def __getattr__(self, attr):