##// END OF EJS Templates
bundle2: relax the condition to update transaction.hookargs...
Yuya Nishihara -
r33809:b3a41f4d default
parent child Browse files
Show More
@@ -304,7 +304,7 b' class bundleoperation(object):'
304 def gettransaction(self):
304 def gettransaction(self):
305 transaction = self._gettransaction()
305 transaction = self._gettransaction()
306
306
307 if self.hookargs is not None:
307 if self.hookargs:
308 # the ones added to the transaction supercede those added
308 # the ones added to the transaction supercede those added
309 # to the operation.
309 # to the operation.
310 self.hookargs.update(transaction.hookargs)
310 self.hookargs.update(transaction.hookargs)
General Comments 0
You need to be logged in to leave comments. Login now