diff options
| -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 '': |
