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]
|
||||
self.dialog.create(
|
||||
self.addonName + ": Sync " + self.viewName +
|
||||
': ' + total + 'items',
|
||||
': ' + str(total) + 'items',
|
||||
"Starting"
|
||||
)
|
||||
global getMetadataCount
|
||||
|
|
Loading…
Reference in a new issue