diff options
author | Allan Crooks <allan@amcone.net> | 2014-05-06 12:39:55 +0100 |
---|---|---|
committer | Allan Crooks <allan@amcone.net> | 2014-05-06 12:39:55 +0100 |
commit | 12031b52ef8dbbecaff04d500c7cf752787e3c9b (patch) | |
tree | 153a4ff7be28bbe4a7145fd71845852e60554353 /cherrypy/lib/encoding.py | |
parent | 8d759b5a9073e34192c2163e6c219f9937f00449 (diff) | |
download | cherrypy-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.py | 2 |
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): |