Fix changes introduced to volatility3.framework.constants in PRs #838 and #1247

This commit is contained in:
Gustavo Moreira
2024-09-18 12:50:58 +10:00
parent 10ac21da2c
commit f77003b670
+2 -1
View File
@@ -134,4 +134,5 @@ def __getattr__(name):
]:
warnings.warn(f"{name} is deprecated", FutureWarning)
return globals()[f"{deprecated_tag}{name}"]
return None
return getattr(__import__(__name__), name)