Skip to content

Commit

Permalink
fix to avoid using instance fields
Browse files Browse the repository at this point in the history
  • Loading branch information
kmaehashi committed Jul 21, 2016
1 parent 16590d1 commit f07d895
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jubakit/base.py
Expand Up @@ -558,7 +558,7 @@ def __del__(self):
self._unassign_port(self.port, proc.pid)
logbuf = self._logbuf
if logbuf is not None and not logbuf.closed: # log buffer is still open
self._logbuf.close()
logbuf.close()

def stop(self):
"""
Expand Down

0 comments on commit f07d895

Please sign in to comment.