##// END OF EJS Templates
exchange: fix dead assignment...
Martin von Zweigbergk -
r25896:6805a4f7 default
parent child Browse files
Show More
@@ -1419,7 +1419,7 b' def unbundle(repo, cg, heads, source, ur'
1419 op = bundle2.bundleoperation(repo, lambda: tr,
1419 op = bundle2.bundleoperation(repo, lambda: tr,
1420 captureoutput=captureoutput)
1420 captureoutput=captureoutput)
1421 try:
1421 try:
1422 r = bundle2.processbundle(repo, cg, op=op)
1422 op = bundle2.processbundle(repo, cg, op=op)
1423 finally:
1423 finally:
1424 r = op.reply
1424 r = op.reply
1425 if captureoutput and r is not None:
1425 if captureoutput and r is not None:
General Comments 0
You need to be logged in to leave comments. Login now