Skip to content

Commit

Permalink
Merge pull request #1538 from jbrunink/master
Browse files Browse the repository at this point in the history
fix _store() so it accepts any named arguments
  • Loading branch information
dgw authored Apr 4, 2019
2 parents 31343ec + 9e0f287 commit 8aad940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sopel/test_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def __init__(self, bot, pretrigger):
self.pretrigger = pretrigger
self.output = []

def _store(self, string, recipent=None):
def _store(self, string, recipent=None, **kwargs):
self.output.append(string.strip())

say = reply = action = _store
Expand Down

0 comments on commit 8aad940

Please sign in to comment.