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

Commit

Permalink
FIX: Windows users were unable to view more detailed information on a…
Browse files Browse the repository at this point in the history
… given issue - the 'i' icon beside each issue that is in Downloaded status AND is a cbz file.
  • Loading branch information
evilhero committed Jan 19, 2015
1 parent db093f7 commit 2be2c78
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions mylar/webserve.py
Original file line number Diff line number Diff line change
Expand Up @@ -3791,6 +3791,8 @@ def downloadthis(self,pathfile=None):
downloadthis.exposed = True

def IssueInfo(self, filelocation):
filelocation = filelocation.encode('ASCII')
filelocation = urllib.unquote_plus(filelocation).decode('utf8')
issuedetails = helpers.IssueDetails(filelocation)
#print str(issuedetails)
issueinfo = '<table width="500"><tr><td>'
Expand Down

0 comments on commit 2be2c78

Please sign in to comment.