From debe74f85129893874760686d3f86fff4cc6d245 Mon Sep 17 00:00:00 2001 From: "Timothy R. Chavez" Date: Mon, 1 Aug 2016 12:46:02 -0500 Subject: [PATCH] Fix typo Dictionary not dicitionary. Change-Id: I6f8862a3e55d3376f61bb7938b415f9345cc0f43 --- rally/task/validation.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rally/task/validation.py b/rally/task/validation.py index e4097426b2..2db5fc65df 100755 --- a/rally/task/validation.py +++ b/rally/task/validation.py @@ -215,7 +215,7 @@ def valid_command(config, clients, deployment, param_name, required=True): command = config.get("args", {}).get(param_name) if command is None: return ValidationResult(not required, - "Command dicitionary is required") + "Command dictionary is required") try: check_command_dict(command) except ValueError as e: