KyubiSystems / Wisewolf

Web-based RSS newsreader, with additional image-handling features. Replacement for Google Reader.
GNU General Public License v3.0
6 stars 0 forks source link

Two Typos #2

Closed Pablo2m closed 11 years ago

Pablo2m commented 11 years ago

In database.py

line 44 if last_updated = None:

should be

if last_updated == None:

line 65 if post_date=None:

should be

if post_date == None:

Pablo2m commented 11 years ago

More pythonic solution :

In database.py

line 44 if last_updated = None:

should be

if last_updated is None:

line 65 if post_date=None:

should be

if post_date is None:

KyubiSystems commented 11 years ago

Fixed in 689dea9.