Mercurial > hg > Feedworm
view backend/sqlalchemy/util.py @ 196:a9ba3e3a9a9a
log the publish date of a feed entry that's stored in the database
author | dirk |
---|---|
date | Tue, 24 Jan 2012 08:25:29 +0100 |
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