LLNL / scraper

Python library for getting metadata from source code hosting tools
MIT License
49 stars 23 forks source link

Fix date comparison for GitHub #32

Closed jfredrickson5 closed 6 months ago

jfredrickson5 commented 5 years ago

Resolves #30

The issue was that github3.py returns a datetime for the repository.created_at property, but dateutil.parser.parse expects a string. So just skip the date parsing.

I don't know if any other repository platforms are affected; only tested GitHub.