##// END OF EJS Templates
Fix issue #880 - initialize TryNext with args and kwargs....
Matt Cottingham -
Show More
@@ -138,7 +138,7 b' class CommandChainDispatcher:'
138 args = exc.args
138 args = exc.args
139 kw = exc.kwargs
139 kw = exc.kwargs
140 # if no function will accept it, raise TryNext up to the caller
140 # if no function will accept it, raise TryNext up to the caller
141 raise TryNext
141 raise TryNext(*args, **kw)
142
142
143 def __str__(self):
143 def __str__(self):
144 return str(self.chain)
144 return str(self.chain)
General Comments 0
You need to be logged in to leave comments. Login now