Skip to content

Commit

Permalink
remove quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
np1 committed Mar 5, 2014
1 parent 5de98c8 commit 279381d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mpsyt
Original file line number Diff line number Diff line change
Expand Up @@ -2301,7 +2301,7 @@ def info(num):
p = g.ytpls[int(num) - 1]

# fetch the playlist item as it has more metadata
yt_playlist = g.pafs.get("parturl")
yt_playlist = g.pafs.get(p['link'])

if not yt_playlist:
g.content = logo(col = c.g)
Expand All @@ -2321,7 +2321,7 @@ def info(num):
out = c.ul + "Playlist Info" + c.w + "\n\n"
out += p['title']
out += "\n" + ytpl_desc
out += ("\n\nAuthor : " + str(p['author']))
out += ("\n\nAuthor : " + p['author'])
out += "\nSize : " + str(p['size']) + " videos"
out += "\nLikes : " + str(ytpl_likes)
out += "\nDislikes : " + str(ytpl_dislikes)
Expand Down Expand Up @@ -2430,7 +2430,7 @@ def plist(parturl, pagenum=1, splash=True, dumps=False):
screen_update()

yt_playlist = pafy.get_playlist(parturl)
g.pafs['parturl'] = yt_playlist
g.pafs[parturl] = yt_playlist
ytpl_items = yt_playlist['items']
ytpl_title = yt_playlist['title']
g.content = generate_songlist_display()
Expand Down

0 comments on commit 279381d

Please sign in to comment.