We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 567bae0 commit 23203e1Copy full SHA for 23203e1
vhdeps_lib/target.py
@@ -38,7 +38,7 @@ def print_targets():
38
def get_target(name):
39
target = _targets.get(name, None)
40
if target is None:
41
- print('Unknown target "%s".', file=sys.stderr)
+ print('Unknown target "%s".' % name, file=sys.stderr)
42
print('Specify --targets to get a listing of all supported targets.', file=sys.stderr)
43
sys.exit(1)
44
return target
0 commit comments