fixing missing utility message

This commit is contained in:
Shiz 2019-04-21 12:10:22 +02:00
parent 161dc41290
commit c8ad8ca324
1 changed files with 1 additions and 1 deletions

2
smold
View File

@ -44,7 +44,7 @@ def main():
for util in ['nasm', 'cc', 'scanelf', 'readelf', 'ld']:
if not getattr(args, util):
parser.error('utility "{u}" could not be found! either install it or pass the path with --{u}'
.format(util))
.format(u=util))
opts = set()
for opt in args.smol_opt[:]: