Skip to content

Commit

Permalink
Merge pull request graphql-python#200 from wbwlkr/fix-typo-in-depreca…
Browse files Browse the repository at this point in the history
…tion-warning

Fix a typo in a deprecation warning
  • Loading branch information
syrusakbary authored Jul 27, 2018
2 parents 02605b1 + d1de4b0 commit 9202021
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphql/execution/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def execute(
context = options["context_value"]
if variables is None and "variable_values" in options:
warnings.warn(
"variable_values has been deprecated. Please use values=... instead.",
"variable_values has been deprecated. Please use variables=... instead.",
category=DeprecationWarning,
stacklevel=2,
)
Expand Down

0 comments on commit 9202021

Please sign in to comment.