Fixed an issue in rar directory reading when the first char in the path is a space.

git-svn-id: http://comictagger.googlecode.com/svn/trunk@429 6c5673fe-1810-88d6-992b-cd32ca31540c
This commit is contained in:
beville@gmail.com 2013-02-05 22:48:12 +00:00
parent 5bdc40b9f5
commit cc02023730

View File

@ -120,7 +120,9 @@ class RarFileImplementation(object):
if len(accum)==2:
data = {}
data['index'] = i
data['filename'] = accum[0].strip()
#!!!ATB - changed this because it was choking when a folder or file started with a space.
#!!! now, just strip off the first char in the string
data['filename'] = accum[0].rstrip()[1:]
info = re_spaces.split(accum[1].strip())
data['size'] = int(info[0])
attr = info[5]