subrepo: always return scmutil.status() from gitsubrepo.status()
This was accidentally left out of
c95db3208a33.
--- a/mercurial/subrepo.py Tue Mar 03 21:17:29 2015 -0500
+++ b/mercurial/subrepo.py Tue Mar 03 21:24:16 2015 -0500
@@ -1640,7 +1640,7 @@
rev1 = self._state[1]
if self._gitmissing() or not rev1:
# if the repo is missing, return no results
- return [], [], [], [], [], [], []
+ return scmutil.status([], [], [], [], [], [], [])
modified, added, removed = [], [], []
self._gitupdatestat()
if rev2: