changed some prints
This commit is contained in:
parent
b0c1fa979f
commit
018fc7579d
1 changed files with 2 additions and 2 deletions
|
|
@ -126,7 +126,7 @@ def searchSongDB():
|
||||||
tempData[i] = songDatabaseList["songData"][i]
|
tempData[i] = songDatabaseList["songData"][i]
|
||||||
except:
|
except:
|
||||||
pass
|
pass
|
||||||
print(tempData)
|
# print(tempData)
|
||||||
return tempData
|
return tempData
|
||||||
|
|
||||||
@app.route("/songadd", methods=["POST"])
|
@app.route("/songadd", methods=["POST"])
|
||||||
|
|
@ -147,7 +147,7 @@ def getPlaylist():
|
||||||
tempPlaylist.append({songNext:temp})
|
tempPlaylist.append({songNext:temp})
|
||||||
for i in playlist:
|
for i in playlist:
|
||||||
tempPlaylist.append({i:songDatabaseList["songData"][i]})
|
tempPlaylist.append({i:songDatabaseList["songData"][i]})
|
||||||
print(tempPlaylist)
|
# print(tempPlaylist)
|
||||||
return tempPlaylist
|
return tempPlaylist
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue