Commit 1a46e329 by rfkelly0

have FS.__init__ call super().__init__; otherwise mixins wont work correctly

parent 95f84b60
...@@ -134,6 +134,7 @@ class FS(object): ...@@ -134,6 +134,7 @@ class FS(object):
:param thread_synconize: If True, a lock object will be created for the object, otherwise a dummy lock will be used. :param thread_synconize: If True, a lock object will be created for the object, otherwise a dummy lock will be used.
:type thread_synchronize: bool :type thread_synchronize: bool
""" """
super(FS,self).__init__()
self.closed = False self.closed = False
if thread_synchronize: if thread_synchronize:
self._lock = threading.RLock() self._lock = threading.RLock()
......
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