diff options
| author | Chris McDonough <chrism@plope.com> | 2011-05-28 19:45:38 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-05-28 19:45:38 -0400 |
| commit | e25be5271cf54dd409cacf8089e055b0d13b59c7 (patch) | |
| tree | 8a4c5f1a358403928787cbab1b2ea61377c1b148 | |
| parent | 7cac620d6834f2997bedbb1e6bbb10637f97a9b7 (diff) | |
| download | pyramid-e25be5271cf54dd409cacf8089e055b0d13b59c7.tar.gz pyramid-e25be5271cf54dd409cacf8089e055b0d13b59c7.tar.bz2 pyramid-e25be5271cf54dd409cacf8089e055b0d13b59c7.zip | |
explain better
| -rw-r--r-- | pyramid/exceptions.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pyramid/exceptions.py b/pyramid/exceptions.py index e626efd5c..393fb376f 100644 --- a/pyramid/exceptions.py +++ b/pyramid/exceptions.py @@ -246,9 +246,9 @@ ${body}''') def _default_app_iter(self): # This is a generator which defers the creation of the response page # body; we use a generator because we want to ensure that if - # attributes of this response are changed after it is constructed we + # attributes of this response are changed after it is constructed, we # use the changed values rather than the values at time of construction - # (e.g. self.content_type). + # (e.g. self.content_type or self.charset). html_comment = '' comment = self.comment or '' if 'html' in self.content_type or '': |
