#1471 - use standard date format

This commit is contained in:
Dave Lassalle
2025-03-12 19:02:59 -05:00
parent f0991a9cf6
commit 154999461f
5 changed files with 5 additions and 5 deletions
@@ -18,7 +18,7 @@ class Amcache(amcache.Amcache):
warnings.warn(
FutureWarning(
"The windows.amcache.Amcache plugin is deprecated and will be removed on "
"September 19, 2025. Use windows.registry.amcache.Amcache instead."
"2025-09-25. Use windows.registry.amcache.Amcache instead."
)
)
return super().__getattribute__(*args, **kwargs)
@@ -18,7 +18,7 @@ class Cachedump(cachedump.Cachedump):
warnings.warn(
FutureWarning(
"The windows.cachedump.Cachedump plugin is deprecated and will be removed on "
"September 19, 2025. Use windows.registry.cachedump.Cachedump instead."
"2025-09-25. Use windows.registry.cachedump.Cachedump instead."
)
)
return super().__getattribute__(*args, **kwargs)
@@ -18,7 +18,7 @@ class Hashdump(hashdump.Hashdump):
warnings.warn(
FutureWarning(
"The windows.hashdump.Hashdump plugin is deprecated and will be removed on "
"September 19, 2025. Use windows.registry.hashdump.Hashdump instead."
"2025-09-25. Use windows.registry.hashdump.Hashdump instead."
)
)
return super().__getattribute__(*args, **kwargs)
@@ -18,7 +18,7 @@ class Lsadump(lsadump.Lsadump):
warnings.warn(
FutureWarning(
"The windows.lsadump.Lsadump plugin is deprecated and will be removed on "
"September 19, 2025. Use windows.registry.lsadump.Lsadump instead."
"2025-09-25. Use windows.registry.lsadump.Lsadump instead."
)
)
return super().__getattribute__(*args, **kwargs)
@@ -19,7 +19,7 @@ class ScheduledTasks(scheduled_tasks.ScheduledTasks):
warnings.warn(
FutureWarning(
"The windows.registry.scheduled_tasks.ScheduledTasks plugin is deprecated and will be removed on "
"September 19, 2025. Use windows.registry.scheduled_tasks.ScheduledTasks instead."
"2025-09-25. Use windows.registry.scheduled_tasks.ScheduledTasks instead."
)
)
return super().__getattribute__(*args, **kwargs)