##// END OF EJS Templates
subrepo: always return scmutil.status() from gitsubrepo.status()...
Matt Harbison -
r24210:99362821 default
parent child Browse files
Show More
@@ -1640,7 +1640,7 b' class gitsubrepo(abstractsubrepo):'
1640 rev1 = self._state[1]
1640 rev1 = self._state[1]
1641 if self._gitmissing() or not rev1:
1641 if self._gitmissing() or not rev1:
1642 # if the repo is missing, return no results
1642 # if the repo is missing, return no results
1643 return [], [], [], [], [], [], []
1643 return scmutil.status([], [], [], [], [], [], [])
1644 modified, added, removed = [], [], []
1644 modified, added, removed = [], [], []
1645 self._gitupdatestat()
1645 self._gitupdatestat()
1646 if rev2:
1646 if rev2:
General Comments 0
You need to be logged in to leave comments. Login now