From 658f75f340de36cc02831ff525d3f2df376aee03 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Mon, 26 Jan 2015 01:48:26 +0000 Subject: [PATCH] Fix a typo that would break the config file. --- volatility/framework/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/config.py b/volatility/framework/config.py index 477588826..c80877b02 100644 --- a/volatility/framework/config.py +++ b/volatility/framework/config.py @@ -84,7 +84,7 @@ class Group(ConfigurationCommonInterface): if __name__ == '__main__': root = Group(name = 'volatility') - root.core = Group(name = 'core') * + root.core = Group(name = 'core') import pdb pdb.set_trace()