forgot to protect debug output by a VERBOSE check

This commit is contained in:
rdb 2009-12-19 11:06:07 +00:00
parent d3e545a949
commit fec1586d1f

View File

@ -1042,6 +1042,7 @@ def ChooseLib(*libs):
if (libname in GetLibCache()):
return libname
if (len(libs) > 0):
if (VERBOSE):
print GetColor("cyan") + "Couldn't find any of the libraries " + ", ".join(libs) + GetColor()
return libs[0]