Skip to content

Commit

Permalink
fix runtime errors from formatting in log.py
Browse files Browse the repository at this point in the history
  • Loading branch information
thatch45 committed Nov 13, 2011
1 parent 854a1b0 commit 10ee0cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions salt/log.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
"""
'''
salt.log
~~~~~~~~
This is were Salt's logging get's setup.
:copyright: © 2011 :email:`Pedro Algarvio (pedro@algarvio.me)`
:copyright: 2011 :email:`Pedro Algarvio (pedro@algarvio.me)`
:license: Apache 2.0, see LICENSE for more details.
"""
'''

import logging
import logging.handlers
Expand All @@ -18,7 +18,7 @@
LOG_LEVELS = {
'debug': logging.DEBUG,
'error': logging.ERROR,
'garbage': GARBAGE
'garbage': GARBAGE,
'info': logging.INFO,
'none': logging.NOTSET,
'trace': TRACE,
Expand Down

0 comments on commit 10ee0cb

Please sign in to comment.