update.py: fix division by zero in progress report
- Required when there are no new tags Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
This commit is contained in:
parent
3c78f8a0fc
commit
f2b40c5f7e
1 changed files with 1 additions and 1 deletions
|
|
@ -138,7 +138,7 @@ numTags = len(tagBuf)
|
|||
tagCount = 0
|
||||
project = lib.currentProject ()
|
||||
|
||||
progress ('found ' + str(len(tagBuf)) + ' new tags')
|
||||
print (project + ' - found ' + str(len(tagBuf)) + ' new tags')
|
||||
|
||||
for tag in tagBuf:
|
||||
tagCount +=1
|
||||
|
|
|
|||
Loading…
Reference in a new issue