Fixed int instead of str in ThreadedShowSyncInfo()
This commit is contained in:
parent
194467091a
commit
b3f588fd71
1 changed files with 1 additions and 1 deletions
|
@ -160,7 +160,7 @@ class ThreadedShowSyncInfo(threading.Thread):
|
||||||
processLock = self.locks[1]
|
processLock = self.locks[1]
|
||||||
self.dialog.create(
|
self.dialog.create(
|
||||||
self.addonName + ": Sync " + self.viewName +
|
self.addonName + ": Sync " + self.viewName +
|
||||||
': ' + total + 'items',
|
': ' + str(total) + 'items',
|
||||||
"Starting"
|
"Starting"
|
||||||
)
|
)
|
||||||
global getMetadataCount
|
global getMetadataCount
|
||||||
|
|
Loading…
Reference in a new issue