You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@storm.apache.org by bo...@apache.org on 2014/07/29 22:58:31 UTC

[32/50] git commit: missed out a pair of quotes

missed out a pair of quotes

line 90: attempt to read item 'directTask' from kwargs


Project: http://git-wip-us.apache.org/repos/asf/incubator-storm/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-storm/commit/498d8b22
Tree: http://git-wip-us.apache.org/repos/asf/incubator-storm/tree/498d8b22
Diff: http://git-wip-us.apache.org/repos/asf/incubator-storm/diff/498d8b22

Branch: refs/heads/security
Commit: 498d8b22262a7706ec25097d745f1f6c63c9cb35
Parents: 07a561a
Author: averykhoo <av...@gmail.com>
Authored: Fri Jul 11 15:25:26 2014 +0800
Committer: Derek Dagit <de...@yahoo-inc.com>
Committed: Thu Jul 24 16:37:54 2014 -0500

----------------------------------------------------------------------
 examples/storm-starter/multilang/resources/storm.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-storm/blob/498d8b22/examples/storm-starter/multilang/resources/storm.py
----------------------------------------------------------------------
diff --git a/examples/storm-starter/multilang/resources/storm.py b/examples/storm-starter/multilang/resources/storm.py
index 4bc9e82..fdf7751 100644
--- a/examples/storm-starter/multilang/resources/storm.py
+++ b/examples/storm-starter/multilang/resources/storm.py
@@ -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):