gitinspector icon indicating copy to clipboard operation
gitinspector copied to clipboard

AttributeError: 'Commit' object has no attribute 'timestamp'

Open yoshivda opened this issue 3 years ago • 1 comments

When running gitinspector (on a non-public repository) I get the following error:

File "[path]/changes.py", line 82, in __lt__
    return self.timestamp.__lt__(other.timestamp) # only used for sorting; we just consider the timestamp.
AttributeError: 'Commit' object has no attribute 'timestamp'

The call to Commit.__init__ is made with an empty string, but I have no clue why.

yoshivda avatar Mar 16 '21 12:03 yoshivda

@yoshivda - just had the same problem, which I got rid with this workaround: https://github.com/ejwa/gitinspector/issues/118#issuecomment-258506482

ojacques avatar Mar 22 '21 16:03 ojacques