fix messages
This commit is contained in:
parent
e55eb078f5
commit
5083103d1a
2 changed files with 2 additions and 2 deletions
|
|
@ -137,7 +137,7 @@ class Weboob(object):
|
|||
self.logger.error(e)
|
||||
if module is None:
|
||||
self.logger.warning(u'Backend "%s" is referenced in %s but was not found. '
|
||||
'Hint: is it installed?' % (module_name, self.backends_config.confpath))
|
||||
'Hint: try to use "weboob-config update"' % (module_name, self.backends_config.confpath))
|
||||
continue
|
||||
|
||||
if instance_name in self.backend_instances:
|
||||
|
|
|
|||
|
|
@ -479,7 +479,7 @@ class Repositories(object):
|
|||
elif info.version > installed:
|
||||
progress.progress(0.3, 'A new version of this module is available')
|
||||
else:
|
||||
raise ModuleInstallError('The last version is already installed')
|
||||
raise ModuleInstallError('The last version of %s is already installed' % info.name)
|
||||
|
||||
browser = StandardBrowser()
|
||||
progress.progress(0.2, 'Downloading module...')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue