From 462295fc4b122b33ec3356b2fe8f25f79244dd71 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Tue, 16 Aug 2016 10:55:27 +0100 Subject: [PATCH] Ensure lime is properly imported, so that its classes get picked up by the plugin system. --- volatility/framework/layers/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/volatility/framework/layers/__init__.py b/volatility/framework/layers/__init__.py index 887cadae4..f01b3e491 100644 --- a/volatility/framework/layers/__init__.py +++ b/volatility/framework/layers/__init__.py @@ -7,7 +7,7 @@ Created on 4 May 2013 import collections.abc from volatility.framework import validity, interfaces, exceptions -from volatility.framework.layers import physical, intel +from volatility.framework.layers import physical, intel, lime class Memory(validity.ValidityRoutines, collections.abc.Mapping):