Skip to content
This repository has been archived by the owner on Jan 20, 2023. It is now read-only.

Commit

Permalink
fixed bug from last thing. Too much time in PHP :(
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Hoad committed May 6, 2011
1 parent fb0756f commit 6275522
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion default.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def get_shares():
def get_movie_sources():
result = eval(xbmc.executeJSONRPC('{"jsonrpc": "2.0", "method": "VideoLibrary.GetMovies", "id": 1}'))
movies = result['result']['movies']
echo movies
print movies
files = [ item['file'] for item in movies ]
files = [ os.path.dirname(f) for f in files ]
files = remove_duplicates(files)
Expand Down

0 comments on commit 6275522

Please sign in to comment.