fixed typo in output
This commit is contained in:
parent
b9722b866c
commit
3abe4699b7
|
@ -44,7 +44,7 @@ class Environment():
|
|||
if licenses[0]-licenses[1] >= Nneeded:
|
||||
return 0
|
||||
else:
|
||||
print('%s missing licenses for %s'%(software,licenses[1] + Nneeded - licenses[0]))
|
||||
print('%s missing licenses for %s'%(licenses[1] + Nneeded - licenses[0],software))
|
||||
return licenses[1] + Nneeded - licenses[0]
|
||||
except IndexError:
|
||||
print('Could not retrieve license information for %s'%software)
|
||||
|
|
Loading…
Reference in New Issue