Only warn about unusable installs when disabling them

This commit is contained in:
David Vierra 2015-02-08 01:08:45 -10:00
parent a7436d7d34
commit c8c577f63f

View File

@ -183,7 +183,7 @@ def _listInstalls():
install.checkUsable()
yield install
except MCInstallError as e:
log.exception("Not using install %s: %s", install.path, e)
log.warn("Not using install %s: %s", install.path, e)
def listInstalls():