Skip to content

Commit

Permalink
Missing comma
Browse files Browse the repository at this point in the history
Fixes a syntax error where a comma was missing.
  • Loading branch information
NyanHelsing committed Aug 1, 2018
1 parent 7ed01c4 commit 2862304
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mfr/core/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def make_provider(name, request, url, action=None):
namespace='mfr.providers',
name=name.lower(),
invoke_on_load=True,
invoke_args=(request, url)
invoke_args=(request, url),
invoke_kwds={'action': action},
).driver
except RuntimeError:
Expand Down

0 comments on commit 2862304

Please sign in to comment.