Show More
@@ -277,7 +277,7 b' def _notransaction():' | |||
|
277 | 277 | to be created""" |
|
278 | 278 | raise TransactionUnavailable() |
|
279 | 279 | |
|
280 |
def processbundle(repo, unbundler, transactiongetter= |
|
|
280 | def processbundle(repo, unbundler, transactiongetter=None): | |
|
281 | 281 | """This function process a bundle, apply effect to/from a repo |
|
282 | 282 | |
|
283 | 283 | It iterates over each part then searches for and uses the proper handling |
@@ -288,6 +288,8 b' def processbundle(repo, unbundler, trans' | |||
|
288 | 288 | |
|
289 | 289 | Unknown Mandatory part will abort the process. |
|
290 | 290 | """ |
|
291 | if transactiongetter is None: | |
|
292 | transactiongetter = _notransaction | |
|
291 | 293 | op = bundleoperation(repo, transactiongetter) |
|
292 | 294 | # todo: |
|
293 | 295 | # - replace this is a init function soon. |
General Comments 0
You need to be logged in to leave comments.
Login now