elections/2012: Fixed a syntax error in mkical.py

This commit is contained in:
Tobias Mueller 2012-02-16 00:00:44 +01:00
parent 8525e19602
commit 8ad6cf81aa

View file

@ -234,7 +234,7 @@ if __name__ == "__main__":
loglevel = {'debug': logging.DEBUG, 'info': logging.INFO,
'warn': logging.WARN, 'error': logging.ERROR,
'critical': logging.CRITICAL}.get(options.loglevel, "warn")
'critical': logging.CRITICAL}.get(options.loglevel, logging.WARN)
logging.basicConfig( level=loglevel )
log = logging.getLogger()