##// END OF EJS Templates
bundle2: add the capability to store hookargs on bundle operation object...
Pulkit Goyal -
r33629:f3407d56 default
parent child Browse files
Show More
@@ -299,6 +299,10 b' class bundleoperation(object):'
299 self.gettransaction = transactiongetter
299 self.gettransaction = transactiongetter
300 self.reply = None
300 self.reply = None
301 self.captureoutput = captureoutput
301 self.captureoutput = captureoutput
302 self.hookargs = {}
303
304 def addhookargs(self, hookargs):
305 self.hookargs.update(hookargs)
302
306
303 class TransactionUnavailable(RuntimeError):
307 class TransactionUnavailable(RuntimeError):
304 pass
308 pass
General Comments 0
You need to be logged in to leave comments. Login now