Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix bad references to datetime.now()
now() is a method in the "datetime" class of the "datetime" module; at the top we were importing the "datetime" module but later overwriting it with the "datetime" class ("from datetime import datetime"). This means "datetime.datetime.now()" should actually be called as "datetime.now()"; also removed the misleading "import datetime"
- Loading branch information