Import linux so we don't need to subimport it everywhere we need to use it.

This commit is contained in:
Mike Auty
2017-08-16 21:34:37 +01:00
parent efc2d75a86
commit 59b9645b04
+1 -2
View File
@@ -3,10 +3,9 @@
Stores all the constant values that are generally fixed throughout volatility
This includes default scanning block sizes, etc."""
import os.path
import sys
__all__ = ["linux", "windows"]
import volatility.framework.constants.linux
PLUGINS_PATH = [os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "..", "plugins")),
os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "plugins"))]