mirror of
https://github.com/moparisthebest/SickRage
synced 2024-11-13 04:45:08 -05:00
cec4ed573d
Switched out sqlite3 libs in favour of SQLAlchemy v0.9, will gradually migrate dialects and scheme to be fully SQLAlchemy compliant for using there ORM with sessions instead of direct. Fixed getEpisode function to stop making unrequired scene number conversions on already converted data thats available now from cache.
15 lines
579 B
Python
15 lines
579 B
Python
__all__ = ['HTTPRequest', 'HTTPConnection', 'HTTPServer',
|
|
'SizeCheckWrapper', 'KnownLengthRFile', 'ChunkedRFile',
|
|
'MaxSizeExceeded', 'NoSSLError', 'FatalSSLAlert',
|
|
'WorkerThread', 'ThreadPool', 'SSLAdapter',
|
|
'CherryPyWSGIServer',
|
|
'Gateway', 'WSGIGateway', 'WSGIGateway_10', 'WSGIGateway_u0',
|
|
'WSGIPathInfoDispatcher', 'get_ssl_adapter_class']
|
|
|
|
import sys
|
|
if sys.version_info < (3, 0):
|
|
from wsgiserver2 import *
|
|
else:
|
|
# Le sigh. Boo for backward-incompatible syntax.
|
|
exec('from .wsgiserver3 import *')
|