summaryrefslogtreecommitdiffstats
path: root/subcmds/info.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/info.py')
-rw-r--r--subcmds/info.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/subcmds/info.py b/subcmds/info.py
index f8c2b1e3..2fbdae05 100644
--- a/subcmds/info.py
+++ b/subcmds/info.py
@@ -102,6 +102,10 @@ class Info(PagedCommand):
102 self.heading("Manifest groups: ") 102 self.heading("Manifest groups: ")
103 self.headtext(manifestGroups) 103 self.headtext(manifestGroups)
104 self.out.nl() 104 self.out.nl()
105 sp = self.manifest.superproject
106 srev = sp.commit_id if sp and sp.commit_id else "None"
107 self.heading("Superproject revision: ")
108 self.headtext(srev)
105 109
106 self.printSeparator() 110 self.printSeparator()
107 111