X-Git-Url: https://git.rvb.name/openlib.git/blobdiff_plain/5361042232c8aa9f86c46f8533ef9637dcd2904d..6b3a07a008979ee27733a2deae2ff4fc42f4a535:/fb2_process.py?ds=sidebyside diff --git a/fb2_process.py b/fb2_process.py index d8c01c1..00ef213 100755 --- a/fb2_process.py +++ b/fb2_process.py @@ -42,7 +42,7 @@ class MetaData: self.sort_title = db.SortName(self.title).replace(' ','_'); self.sort_author = db.SortAuthorName(self.author).replace(' ','_'); self.path = ("%s/%s/%s/%s/%s (%d)" % (self.sort_author[0],self.sort_author[0:2],self.sort_author[0:4],self.sort_author[0:32],self.sort_title[0:64],self.book_id)) - self.dataname = (self.title.decode('utf-8')[0:64]+' '+self.author.decode('utf-8')[0:32]).replace('/','') + self.dataname = (self.title.decode('utf-8')[0:64]+' -- '+self.author.decode('utf-8')[0:32]).replace('/','') def __init__(self,meta_dict,size):