##// END OF EJS Templates
subrepo: let black expand some call on multiple lines early...
marmoute -
r50940:bbe3a65b default
parent child Browse files
Show More
@@ -570,7 +570,13 b' class hgsubrepo(abstractsubrepo):'
570 570 @annotatesubrepoerror
571 571 def add(self, ui, match, prefix, uipathfn, explicitonly, **opts):
572 572 return cmdutil.add(
573 ui, self._repo, match, prefix, uipathfn, explicitonly, **opts
573 ui,
574 self._repo,
575 match,
576 prefix,
577 uipathfn,
578 explicitonly,
579 **opts,
574 580 )
575 581
576 582 @annotatesubrepoerror
@@ -621,7 +627,7 b' class hgsubrepo(abstractsubrepo):'
621 627 match,
622 628 prefix=prefix,
623 629 listsubrepos=True,
624 **opts
630 **opts,
625 631 )
626 632 except error.RepoLookupError as inst:
627 633 self.ui.warn(
@@ -1123,7 +1129,7 b' class svnsubrepo(abstractsubrepo):'
1123 1129 stdout=subprocess.PIPE,
1124 1130 stderr=subprocess.PIPE,
1125 1131 env=procutil.tonativeenv(env),
1126 **extrakw
1132 **extrakw,
1127 1133 )
1128 1134 stdout, stderr = map(util.fromnativeeol, p.communicate())
1129 1135 stderr = stderr.strip()
@@ -1488,7 +1494,7 b' class gitsubrepo(abstractsubrepo):'
1488 1494 close_fds=procutil.closefds,
1489 1495 stdout=subprocess.PIPE,
1490 1496 stderr=errpipe,
1491 **extrakw
1497 **extrakw,
1492 1498 )
1493 1499 if stream:
1494 1500 return p.stdout, None
General Comments 0
You need to be logged in to leave comments. Login now