Skip to content

Commit bb6ab45

Browse files
authored
Merge pull request #1268 from gcmoreira/fix_constants_imports
Fix changes introduced to volatility3.framework.constants in PRs #838
2 parents 10ac21d + f77003b commit bb6ab45

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

volatility3/framework/constants/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,5 @@ def __getattr__(name):
134134
]:
135135
warnings.warn(f"{name} is deprecated", FutureWarning)
136136
return globals()[f"{deprecated_tag}{name}"]
137-
return None
137+
138+
return getattr(__import__(__name__), name)

0 commit comments

Comments
 (0)