Skip to content

Commit

Permalink
Remove redundant parenthesis.
Browse files Browse the repository at this point in the history
modified:   src/ZPublisher/HTTPResponse.py
  • Loading branch information
jugmac00 committed May 1, 2019
1 parent f212b9f commit 31b3b20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZPublisher/HTTPResponse.py
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ def finalize(self):
if content_length is None and not self._streaming:
self.setHeader('content-length', len(self.body))

return ('%s %s' % (self.status, self.errmsg), self.listHeaders())
return '%s %s' % (self.status, self.errmsg), self.listHeaders()

def listHeaders(self):
result = []
Expand Down

0 comments on commit 31b3b20

Please sign in to comment.