mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 08:53:37 +00:00
Fix for missing WITH statement
This commit is contained in:
parent
032ddf2425
commit
cf4cbd9a34
2 changed files with 7 additions and 1 deletions
|
@ -18,6 +18,8 @@
|
|||
# along with SickRage. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
# Check needed software dependencies to nudge users to fix their setup
|
||||
from __future__ import with_statement
|
||||
|
||||
import sys
|
||||
|
||||
if sys.version_info < (2, 6):
|
||||
|
|
|
@ -114,6 +114,8 @@ def initWebServer(options={}):
|
|||
app.add_handlers(".*$", [
|
||||
(r'%s/(favicon\.ico)' % options['web_root'], MultiStaticFileHandler,
|
||||
{'paths': [os.path.join(options['data_root'], 'images/ico/favicon.ico')]}),
|
||||
(r'%s/(.*)(/?)' % options['web_root'], MultiStaticFileHandler,
|
||||
{'paths': [options['data_root']]}),
|
||||
(r'%s/%s/(.*)(/?)' % (options['web_root'], 'images'), MultiStaticFileHandler,
|
||||
{'paths': [os.path.join(options['data_root'], 'images'),
|
||||
os.path.join(sickbeard.CACHE_DIR, 'images'),
|
||||
|
@ -121,7 +123,9 @@ def initWebServer(options={}):
|
|||
(r'%s/%s/(.*)(/?)' % (options['web_root'], 'css'), MultiStaticFileHandler,
|
||||
{'paths': [os.path.join(options['data_root'], 'css')]}),
|
||||
(r'%s/%s/(.*)(/?)' % (options['web_root'], 'js'), MultiStaticFileHandler,
|
||||
{'paths': [os.path.join(options['data_root'], 'js')]})
|
||||
{'paths': [os.path.join(options['data_root'], 'js'),
|
||||
os.path.join(options['data_root'], 'js/lib'),
|
||||
os.path.join(options['data_root'], 'js/fancybox')]})
|
||||
|
||||
])
|
||||
|
||||
|
|
Loading…
Reference in a new issue