equal
deleted
inserted
replaced
316 |
316 |
317 return transaction |
317 return transaction |
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): |
327 pass |
326 pass |
328 |
327 |