(I tried to create an account, but it when I log in I just get a blank page)
Logged In: NO
(don't make new lines with Enter!)
I got the same problem, which I solved by changing history.py to
def mkfilenamekey(filename): filenamehash = md5.md5(filename.encode('ISO-8859-1', errors = 'replace')).hexdigest() return 'filename:%s' % filenamehash
At least that makes it possible to finish downloading files with non-ascii characters.
Sven Grönquist
By the way, this particular bug seems to be reported quite a few times.
/Sven
Log in to post a comment.
Logged In: NO
(don't make new lines with Enter!)
I got the same problem, which I solved by changing history.py to
def mkfilenamekey(filename):
filenamehash = md5.md5(filename.encode('ISO-8859-1', errors = 'replace')).hexdigest()
return 'filename:%s' % filenamehash
At least that makes it possible to finish downloading files with non-ascii characters.
Sven Grönquist
Logged In: NO
By the way, this particular bug seems to be reported quite a few times.
/Sven