version 0.3.107

This commit is contained in:
Kovid Goyal 2007-09-07 19:45:31 +00:00
parent 31a8fc84f4
commit b8a1906aa3
2 changed files with 3 additions and 1 deletions

View File

@ -13,7 +13,7 @@
## with this program; if not, write to the Free Software Foundation, Inc., ## with this program; if not, write to the Free Software Foundation, Inc.,
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
''' E-book management software''' ''' E-book management software'''
__version__ = "0.3.106" __version__ = "0.3.107"
__docformat__ = "epytext" __docformat__ = "epytext"
__author__ = "Kovid Goyal <kovid@kovidgoyal.net>" __author__ = "Kovid Goyal <kovid@kovidgoyal.net>"
__appname__ = 'libprs500' __appname__ = 'libprs500'

View File

@ -962,6 +962,8 @@ class LibraryDatabase(object):
for a in temp: for a in temp:
authors += a.split('&') authors += a.split('&')
self.set_authors(id, authors) self.set_authors(id, authors)
if mi.author_sort:
self.set_author_sort(id, mi.author_sort)
if mi.publisher: if mi.publisher:
self.set_publisher(id, mi.publisher) self.set_publisher(id, mi.publisher)
if mi.rating: if mi.rating: