diff options
Diffstat (limited to 'subcmds/diffmanifests.py')
-rw-r--r-- | subcmds/diffmanifests.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/subcmds/diffmanifests.py b/subcmds/diffmanifests.py index 0e5f4108..08196ef9 100644 --- a/subcmds/diffmanifests.py +++ b/subcmds/diffmanifests.py | |||
@@ -118,6 +118,16 @@ synced and their revisions won't be found. | |||
118 | self.printRevision(project.revisionExpr) | 118 | self.printRevision(project.revisionExpr) |
119 | self.out.nl() | 119 | self.out.nl() |
120 | 120 | ||
121 | if diff['missing']: | ||
122 | self.out.nl() | ||
123 | self.printText('missing projects : \n') | ||
124 | self.out.nl() | ||
125 | for project in diff['missing']: | ||
126 | self.printProject('\t%s' % (project.relpath)) | ||
127 | self.printText(' at revision ') | ||
128 | self.printRevision(project.revisionExpr) | ||
129 | self.out.nl() | ||
130 | |||
121 | if diff['changed']: | 131 | if diff['changed']: |
122 | self.out.nl() | 132 | self.out.nl() |
123 | self.printText('changed projects : \n') | 133 | self.printText('changed projects : \n') |