Commit f51dc2dd authored by Denis Bilenko's avatar Denis Bilenko

fileobject.py: fix SyntaxError on python2.5

parent a422e9b9
......@@ -273,7 +273,8 @@ class FileObjectThread(object):
fobj = self._fobj
if fobj is None:
raise FileObjectClosed
return self._apply(fobj.%s, args, kwargs)''' % (method, method)
return self._apply(fobj.%s, args, kwargs)
''' % (method, method)
def __iter__(self):
return self
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment