Skip to content
Snippets Groups Projects
Commit 824e0781 authored by Adam J. Stewart's avatar Adam J. Stewart Committed by Massimiliano Culpo
Browse files

Fix a typo in fetch_strategy error message formatting (#6878)

parent 8555947e
No related branches found
No related tags found
No related merge requests found
...@@ -915,7 +915,7 @@ def from_kwargs(**kwargs): ...@@ -915,7 +915,7 @@ def from_kwargs(**kwargs):
# Raise an error in case we can't instantiate any known strategy # Raise an error in case we can't instantiate any known strategy
message = "Cannot instantiate any FetchStrategy" message = "Cannot instantiate any FetchStrategy"
long_message = message + " from the given arguments : {arguments}".format( long_message = message + " from the given arguments : {arguments}".format(
srguments=kwargs) arguments=kwargs)
raise FetchError(message, long_message) raise FetchError(message, long_message)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment