We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4895af4 commit c4274c9Copy full SHA for c4274c9
volatility3/framework/symbols/linux/__init__.py
@@ -903,7 +903,7 @@ def __sub__(self, timespec) -> "TimespecVol3":
903
"""Returns a new TimespecVol3 object that subtracts the values in the timespec
904
argument from the current object's values"""
905
if not isinstance(timespec, (TimespecVol3, extensions.timespec64)):
906
- raise TypeError("Cannot add a TimespecVol3 to this object")
+ raise TypeError("Cannot substract this object to a TimespecVol3")
907
908
result = TimespecVol3(
909
tv_sec=self.tv_sec - timespec.tv_sec,
0 commit comments