remove not needed if in function camelot
This commit is contained in:
parent
91e02dfaae
commit
34d448ae1f
1 changed files with 29 additions and 31 deletions
60
default.py
60
default.py
|
@ -493,37 +493,35 @@ def numbers():
|
||||||
|
|
||||||
|
|
||||||
def camelot():
|
def camelot():
|
||||||
#fanart = "resources/img/camelot/camleot.png"
|
num1 = 0
|
||||||
if sort == "random" or sort == "date":
|
for num in range(1, 13):
|
||||||
num1 = 0
|
# logic to get get all the different translation strings from camelot wheel
|
||||||
for num in range(1, 13):
|
minor = 30149 + num + num1
|
||||||
# logic to get get all the different translation strings from camelot wheel
|
major = 30149 + num + num1 + 1
|
||||||
minor = 30149 + num + num1
|
log(
|
||||||
major = 30149 + num + num1 + 1
|
msg="camelotnumber=%s, minor=%s, major=%s" % (num, minor, major),
|
||||||
log(
|
level=xbmc.LOGINFO,
|
||||||
msg="camelotnumber=%s, minor=%s, major=%s" % (num, minor, major),
|
)
|
||||||
level=xbmc.LOGINFO,
|
fanart = os.path.join(
|
||||||
)
|
addonDir, "resources/img/camelot/" + str(num) + "A.png"
|
||||||
fanart = os.path.join(
|
)
|
||||||
addonDir, "resources/img/camelot/" + str(num) + "A.png"
|
addDir(
|
||||||
)
|
translation(minor),
|
||||||
addDir(
|
"&limit=camelot&sort=" + sort + "&start=" + str(num) + "A",
|
||||||
translation(minor),
|
"sortTitlesBy",
|
||||||
"&limit=camelot&sort=" + sort + "&start=" + str(num) + "A",
|
fanart,
|
||||||
"sortTitlesBy",
|
)
|
||||||
fanart,
|
fanart = os.path.join(
|
||||||
)
|
addonDir, "resources/img/camelot/" + str(num) + "B.png"
|
||||||
fanart = os.path.join(
|
)
|
||||||
addonDir, "resources/img/camelot/" + str(num) + "B.png"
|
addDir(
|
||||||
)
|
translation(major),
|
||||||
addDir(
|
"&limit=camelot&sort=" + sort + "&start=" + str(num) + "B",
|
||||||
translation(major),
|
"sortTitlesBy",
|
||||||
"&limit=camelot&sort=" + sort + "&start=" + str(num) + "B",
|
fanart,
|
||||||
"sortTitlesBy",
|
)
|
||||||
fanart,
|
num1 += 1
|
||||||
)
|
endOfDirectory()
|
||||||
num1 += 1
|
|
||||||
endOfDirectory()
|
|
||||||
|
|
||||||
|
|
||||||
def opensettings():
|
def opensettings():
|
||||||
|
|
Loading…
Add table
Reference in a new issue