Leor3961 / volatility

Automatically exported from code.google.com/p/volatility
0 stars 0 forks source link

ident/datetime issue #19

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
The following line in plugins/internal/datetime-ident.py needs to be changed 
from:

class Ident(DateTime):
        datetime.__init__(self, args)

To:

class Ident(DateTime):
        DateTime.__init__(self, args)

Original issue reported on code.google.com by michael.hale@gmail.com on 26 Aug 2010 at 1:51

GoogleCodeExporter commented 8 years ago
This issue was closed by revision r399.

Original comment by mike.auty@gmail.com on 26 Aug 2010 at 10:57

GoogleCodeExporter commented 8 years ago
Thanks, sorry that was a daft typo that slipped through because datetime's also 
a valid module name.  Should be Fixed now in r399.  5:)

Original comment by mike.auty@gmail.com on 26 Aug 2010 at 10:58