Mercurial > hg > Feedworm
view backend/sqlalchemy/util.py @ 204:4cb22b47b659
Due to a bug in CouchDB it's possible that a view still references deleted documents. Detect this case and don't add NoneType objects into the list of feeds.
author | dirk |
---|---|
date | Tue, 03 Apr 2012 05:35:13 +0200 |
parents | 04a730f9d07d |
children | bb3c851b18b1 |
line wrap: on
line source
import sys def databaseLoggingEnabled(): loggingEnabled = False for arg in sys.argv: if arg == "--databaseLogging": loggingEnabled = True return loggingEnabled