# HG changeset patch # User Matt Harbison # Date 1425435856 18000 # Node ID 99362821b25b64965943a40dafe85fae99547ebb # Parent 6944b64cc28d167061632f3fb62a9f4c9b852ab2 subrepo: always return scmutil.status() from gitsubrepo.status() This was accidentally left out of c95db3208a33. diff -r 6944b64cc28d -r 99362821b25b mercurial/subrepo.py --- 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: