summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllan Crooks <allan@amcone.net>2014-05-06 12:39:55 +0100
committerAllan Crooks <allan@amcone.net>2014-05-06 12:39:55 +0100
commit55473c06f21ad3fcc1e16a1b160db09109591583 (patch)
treefd32d0ceee04342ded38d8bf1a8587b869f84f36
parent5a3113ae997676eb7308575adf2d962355a4ad03 (diff)
downloadcherrypy-55473c06f21ad3fcc1e16a1b160db09109591583.tar.gz
Fixed SyntaxError which somehow slipped under the radar...
-rw-r--r--cherrypy/lib/encoding.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/cherrypy/lib/encoding.py b/cherrypy/lib/encoding.py
index fa8387b6..a4c2cbd6 100644
--- a/cherrypy/lib/encoding.py
+++ b/cherrypy/lib/encoding.py
@@ -51,7 +51,7 @@ class UTF8StreamEncoder:
return res
def close(self):
- if is_closable_iterator(self._iterator)
+ if is_closable_iterator(self._iterator):
self._iterator.close()
def __getattr__(self, attr):