Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #134 from macartur/issue-#100
Browse files Browse the repository at this point in the history
Show warning when a NApp is already installed
  • Loading branch information
beraldoleal authored Sep 27, 2017
2 parents cf476c1 + b2c1d60 commit c87ca60
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion kytos/cli/commands/napps/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,9 @@ def install_napps(cls, napps):
LOG.info('NApp %s:', mgr.napp_id)
if not mgr.is_installed():
cls.install_napp(mgr)
else:
LOG.info(' Installed.')
else:
LOG.warning(' Napp already Installed.')
cls.enable_napp(mgr)
napp_dependencies = mgr.dependencies()
if napp_dependencies:
Expand Down

0 comments on commit c87ca60

Please sign in to comment.