Skip to content

Commit 23203e1

Browse files
committed
Fix error message
1 parent 567bae0 commit 23203e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vhdeps_lib/target.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ def print_targets():
3838
def get_target(name):
3939
target = _targets.get(name, None)
4040
if target is None:
41-
print('Unknown target "%s".', file=sys.stderr)
41+
print('Unknown target "%s".' % name, file=sys.stderr)
4242
print('Specify --targets to get a listing of all supported targets.', file=sys.stderr)
4343
sys.exit(1)
4444
return target

0 commit comments

Comments
 (0)