##// END OF EJS Templates
bundle2: raise ProgrammingError for invalid call of addhookargs()...
Yuya Nishihara -
r33808:1bf5c550 default
parent child Browse files
Show More
@@ -318,9 +318,8 b' class bundleoperation(object):'
318
318
319 def addhookargs(self, hookargs):
319 def addhookargs(self, hookargs):
320 if self.hookargs is None:
320 if self.hookargs is None:
321 raise error.Abort(
321 raise error.ProgrammingError('attempted to add hookargs to '
322 _('attempted to add hooks to operation after transaction '
322 'operation after transaction started')
323 'started'))
324 self.hookargs.update(hookargs)
323 self.hookargs.update(hookargs)
325
324
326 class TransactionUnavailable(RuntimeError):
325 class TransactionUnavailable(RuntimeError):
General Comments 0
You need to be logged in to leave comments. Login now