created a TraversalSideEffects class in traversal.py that RemoteTraversalSideEffects inherits from.
Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/2804e455 Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/2804e455 Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/2804e455 Branch: refs/heads/master Commit: 2804e455ee13374b85a84f327abe252320448072 Parents: 5d446f3 Author: Marko A. Rodriguez <okramma...@gmail.com> Authored: Thu Aug 25 13:19:13 2016 -0600 Committer: Marko A. Rodriguez <okramma...@gmail.com> Committed: Thu Aug 25 13:19:13 2016 -0600 ---------------------------------------------------------------------- .../src/main/jython/gremlin_python/driver/remote_connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/2804e455/gremlin-python/src/main/jython/gremlin_python/driver/remote_connection.py ---------------------------------------------------------------------- diff --git a/gremlin-python/src/main/jython/gremlin_python/driver/remote_connection.py b/gremlin-python/src/main/jython/gremlin_python/driver/remote_connection.py index a659ebc..dbb0e83 100644 --- a/gremlin-python/src/main/jython/gremlin_python/driver/remote_connection.py +++ b/gremlin-python/src/main/jython/gremlin_python/driver/remote_connection.py @@ -43,7 +43,7 @@ class RemoteConnection(object): @abc.abstractmethod def submit(self, bytecode): print "sending " + bytecode + " to GremlinServer..." - return RemoteTraversal(iter([]), {}) + return RemoteTraversal(iter([]), TraversalSideEffects()) class RemoteTraversal(Traversal):