Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/midgetspy/Sick-Beard into…
Browse files Browse the repository at this point in the history
… api
  • Loading branch information
thezoggy committed Nov 29, 2011
2 parents 913030d + eaf7ea0 commit 8c2b34d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion data/interfaces/default/displayShow.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ replace with: <b><%=", ".join([Quality.qualityStrings[x] for x in bestQualities]
</td></tr>
<tr><td class="showLegend">Language:</td><td><img src="$sbRoot/images/flags/${show.lang}.png" width="16" height="11" alt="" /> $show.lang</td></tr>
<tr><td class="showLegend">Season Folders: </td><td><img src="$sbRoot/images/#if $show.seasonfolders == 1 then "yes16.png\" alt=\"Y" else "no16.png\" alt=\"N"#" width="16" height="16" /></td></tr>
<tr><td class="showLegend">Paused: </td><td><img src="$sbRoot/images/#if int($show.paused) == 0 then "yes16.png\" alt=\"Y" else "no16.png\" alt=\"N"#" width="16" height="16" /></td></tr>
<tr><td class="showLegend">Paused: </td><td><img src="$sbRoot/images/#if int($show.paused) == 1 then "yes16.png\" alt=\"Y" else "no16.png\" alt=\"N"#" width="16" height="16" /></td></tr>
<tr><td class="showLegend">Air-by-Date: </td><td><img src="$sbRoot/images/#if int($show.air_by_date) == 1 then "yes16.png\" alt=\"Y" else "no16.png\" alt=\"N"#" width="16" height="16" /></td></tr>
</table>
</div>
Expand Down
2 changes: 1 addition & 1 deletion data/interfaces/default/viewlogs.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<!--
\$(document).ready(function(){
\$('#minLevel').change(function(){
url = 'viewlog?minLevel='+\$(this).val()
url = '$sbRoot/errorlogs/viewlog/?minLevel='+\$(this).val()
window.location.href = url
});
});
Expand Down
6 changes: 5 additions & 1 deletion sickbeard/sab.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@
import sickbeard

from lib import MultipartPostHandler
import urllib2, cookielib, json
import urllib2, cookielib
try:
import json
except ImportError:
from lib import simplejson as json

from sickbeard.common import USER_AGENT
from sickbeard import logger
Expand Down

0 comments on commit 8c2b34d

Please sign in to comment.