Add try statement to line 147 in __init__.py

for
col in ['atime', 'mtime', 'ctime']:
try:
df[col] = df[col].apply(
lambda d: datetime.fromtimestamp(d) if microseconds else \
datetime.fromtimestamp(d).replace(microsecond=0))
except:
pass