Use PEP-8 style in logging example

This commit is contained in:
Jason R. Coombs 2012-03-07 10:24:04 -05:00
parent da563bfa48
commit d6a80ee2c7
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ instantiated directly, but always through the module-level function
FORMAT = '%(asctime)-15s %(clientip)s %(user)-8s %(message)s'
logging.basicConfig(format=FORMAT)
d = { 'clientip' : '192.168.0.1', 'user' : 'fbloggs' }
d = {'clientip': '192.168.0.1', 'user': 'fbloggs'}
logger = logging.getLogger('tcpserver')
logger.warning('Protocol problem: %s', 'connection reset', extra=d)