summaryrefslogtreecommitdiff
path: root/cherrypy/lib/encoding.py
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
commit12031b52ef8dbbecaff04d500c7cf752787e3c9b (patch)
tree153a4ff7be28bbe4a7145fd71845852e60554353 /cherrypy/lib/encoding.py
parent8d759b5a9073e34192c2163e6c219f9937f00449 (diff)
downloadcherrypy-git-12031b52ef8dbbecaff04d500c7cf752787e3c9b.tar.gz
Fixed SyntaxError which somehow slipped under the radar...
Diffstat (limited to 'cherrypy/lib/encoding.py')
-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):