fixed typo in output

This commit is contained in:
Martin Diehl 2014-02-28 12:23:46 +00:00
parent b9722b866c
commit 3abe4699b7
1 changed files with 1 additions and 1 deletions

View File

@ -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)