mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
usbms.driver: Report progress as 50% not 5000%. Also remove spurious changed=True, since add_book now correctly reports changed
This commit is contained in:
parent
feb5a6f059
commit
473ccd8a71
@ -89,7 +89,6 @@ class USBMS(CLI, Device):
|
|||||||
self.count_found_in_bl += 1
|
self.count_found_in_bl += 1
|
||||||
else:
|
else:
|
||||||
item = self.book_from_path(prefix, lpath)
|
item = self.book_from_path(prefix, lpath)
|
||||||
changed = True
|
|
||||||
if metadata.add_book(item, replace_metadata=False):
|
if metadata.add_book(item, replace_metadata=False):
|
||||||
changed = True
|
changed = True
|
||||||
except: # Probably a filename encoding error
|
except: # Probably a filename encoding error
|
||||||
@ -108,7 +107,7 @@ class USBMS(CLI, Device):
|
|||||||
if self.SUPPORTS_SUB_DIRS:
|
if self.SUPPORTS_SUB_DIRS:
|
||||||
for path, dirs, files in os.walk(ebook_dir):
|
for path, dirs, files in os.walk(ebook_dir):
|
||||||
for filename in files:
|
for filename in files:
|
||||||
self.report_progress(50.0, _('Getting list of books on device...'))
|
self.report_progress(0.5, _('Getting list of books on device...'))
|
||||||
changed = update_booklist(filename, path, prefix)
|
changed = update_booklist(filename, path, prefix)
|
||||||
if changed:
|
if changed:
|
||||||
need_sync = True
|
need_sync = True
|
||||||
@ -250,6 +249,7 @@ class USBMS(CLI, Device):
|
|||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def normalize_path(cls, path):
|
def normalize_path(cls, path):
|
||||||
|
'Return path with platform native path separators'
|
||||||
if path is None:
|
if path is None:
|
||||||
return None
|
return None
|
||||||
if os.sep == '\\':
|
if os.sep == '\\':
|
||||||
|
Loading…
x
Reference in New Issue
Block a user