Skip to content

Commit

Permalink
missed out a pair of quotes
Browse files Browse the repository at this point in the history
line 90: attempt to read item 'directTask' from kwargs
  • Loading branch information
averykhoo authored and Derek Dagit committed Jul 24, 2014
1 parent 07a561a commit 498d8b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/storm-starter/multilang/resources/storm.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def emit(*args, **kwargs):
return readTaskIds()

def emitDirect(task, *args, **kwargs):
kwargs[directTask] = task
kwargs['directTask'] = task
__emit(*args, **kwargs)

def __emit(*args, **kwargs):
Expand Down

0 comments on commit 498d8b2

Please sign in to comment.