Mercurial > hg > Feedworm
view backend/sqlalchemy/util.py @ 173:3bcf39181f6e
pull the calculation of the epxire date up into AbstractBackend
author | dirk |
---|---|
date | Fri, 09 Sep 2011 17:19:16 +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