On Tue, Feb 18, 2014 at 4:58 PM, Axel Rau <[email protected]> wrote: > I see log message ‚imageMap ended‘ , but not 'In navigation.' > Any further advice?
I'm guessing that you omitted @inlineCallbacks for navigation, but that it contains a yield. In Python, that makes it a plain old generator expression, which just returns a generator object when you call it. It's a common pitfall when using inlineCallbacks. Honestly, this would be easier to discuss if you'd included a http://sscce.org/ at the beginning. Dustin _______________________________________________ Twisted-Python mailing list [email protected] http://twistedmatrix.com/cgi-bin/mailman/listinfo/twisted-python
