Fix #6509 (v0.7.14 - Broken link in book description)

This commit is contained in:
Kovid Goyal 2010-08-15 14:30:01 -06:00
parent c1bf0ebd13
commit 233baa63c6
2 changed files with 4 additions and 4 deletions

View File

@ -48,11 +48,11 @@ class BookInfo(QDialog, Ui_BookInfo):
self.refresh(row)
def open_book_path(self, path):
if os.sep in unicode(path):
path = unicode(path)
if os.sep in path:
open_local_file(path)
else:
format = unicode(path)
path = self.view.model().db.format_abspath(self.current_row, format)
path = self.view.model().db.format_abspath(self.current_row, path)
if path is not None:
open_local_file(path)

View File

@ -57,7 +57,7 @@
<item>
<widget class="QCheckBox" name="fit_cover">
<property name="text">
<string>Fit &amp;cover to view</string>
<string>Fit &amp;cover within view</string>
</property>
</widget>
</item>