1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

Fixed typo.

This commit is contained in:
Sergei Trofimov 2015-06-12 12:43:14 +01:00
parent 2f214da8a2
commit 179baf030e

View File

@ -295,7 +295,7 @@ def install(instrument):
# context. However, we also allow callbacks to capture the context
# in variable arguments (declared as "*args" in the definition).
if arg_num > 2 or (arg_num < 2 and argspec.varargs is None):
message = '{} must take exactly positional arguments; {} given.'
message = '{} must take exactly 2 positional arguments; {} given.'
raise ValueError(message.format(attr_name, arg_num))
logger.debug('\tConnecting %s to %s', attr.__name__, SIGNAL_MAP[stripped_attr_name])