Correctly show the current sync item number
This commit is contained in:
parent
bc1ad1d998
commit
7180595e05
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ class ProcessMetadata(backgroundthread.KillableThread, common.libsync_mixin):
|
||||||
self.dialog.update(progress,
|
self.dialog.update(progress,
|
||||||
self.section_name,
|
self.section_name,
|
||||||
'%s/%s: %s'
|
'%s/%s: %s'
|
||||||
% (self.current, self.total, self.title))
|
% (self.current + 1, self.total, self.title))
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue