##// END OF EJS Templates
subrepo: use repo['.'] instead of repo['']...
Martin von Zweigbergk -
r37283:32857300 default
parent child Browse files
Show More
@@ -603,7 +603,7 b' class hgsubrepo(abstractsubrepo):'
603
603
604 @annotatesubrepoerror
604 @annotatesubrepoerror
605 def phase(self, state):
605 def phase(self, state):
606 return self._repo[state].phase()
606 return self._repo[state or '.'].phase()
607
607
608 @annotatesubrepoerror
608 @annotatesubrepoerror
609 def remove(self):
609 def remove(self):
General Comments 0
You need to be logged in to leave comments. Login now