repositories update: display a message when all modules are up-to-date.
This commit is contained in:
parent
9a657f8d75
commit
4314aa7d69
1 changed files with 4 additions and 0 deletions
|
|
@ -617,6 +617,10 @@ class Repositories(object):
|
|||
if not info.is_local() and info.is_installed():
|
||||
to_update.append(info)
|
||||
|
||||
if len(to_update) == 0:
|
||||
progress.progress(1.0, 'All modules are up-to-date.')
|
||||
return
|
||||
|
||||
class InstallProgress(PrintProgress):
|
||||
def __init__(self, n):
|
||||
self.n = n
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue