From efc2d75a865134a67dc5594b59e1dab95e88c4dd Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Wed, 16 Aug 2017 14:28:43 +0100 Subject: [PATCH] Ensure that other constant modules are imported. --- volatility/framework/constants/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/volatility/framework/constants/__init__.py b/volatility/framework/constants/__init__.py index 1419a5be7..b908a4a37 100644 --- a/volatility/framework/constants/__init__.py +++ b/volatility/framework/constants/__init__.py @@ -6,6 +6,8 @@ import os.path import sys +__all__ = ["linux", "windows"] + PLUGINS_PATH = [os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "plugins")), os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "plugins"))] SYMBOL_BASEPATHS = [os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "symbols")),