Minor documentation and typo fixes caused by my insane love for PEP-3101 and pylint

This commit is contained in:
Guillaume Ayoub
2011-06-02 20:15:07 +02:00
parent f7868afed1
commit fadd5dd675
3 changed files with 41 additions and 27 deletions

View File

@@ -103,13 +103,16 @@ class Application(object):
if config.getboolean('logging', 'full_environment'):
self.headers_log = lambda environ: environ
def headers_log(self, environ):
# This method is overriden in __init__ if full_environment is set
# pylint: disable=E0202
@staticmethod
def headers_log(environ):
"""Remove environment variables from the headers for logging purpose."""
request_environ = dict(environ)
for shell_variable in os.environ:
#if shell_variable not in request_environ:
# continue
del request_environ[shell_variable]
return request_environ
# pylint: enable=E0202
def decode(self, text, environ):
"""Try to magically decode ``text`` according to given ``environ``."""
@@ -267,9 +270,9 @@ class Application(object):
"""Manage MKCALENDAR request."""
calendar = calendars[0]
props = xmlutils.props_from_request(content)
tz = props.get('C:calendar-timezone')
if tz:
calendar.replace('', tz)
timezone = props.get('C:calendar-timezone')
if timezone:
calendar.replace('', timezone)
del props['C:calendar-timezone']
with calendar.props as calendar_props:
for key, value in props.items():