Fix ResourceWarnings

This commit is contained in:
Théo Piboubès
2015-08-20 14:39:45 +02:00
parent e7ad6067d2
commit a2fa9c5ea3
2 changed files with 4 additions and 1 deletions

View File

@@ -18,6 +18,8 @@ from .docs import *
from .oauth import OAuthTool
from .__version__ import __version__
from tornado import ioloop
__all__ = []
def get_config_fp():
@@ -179,5 +181,7 @@ def main():
finally:
# Ensure sockets are closed to prevent a ResourceWarning
reddit.handler.http.close()
# Explicitly close file descriptors opened by Tornado's IOLoop
ioloop.IOLoop.current().close(all_fds=True)
sys.exit(main())