summaryrefslogtreecommitdiff
path: root/hacking/metadata-tool.py
diff options
context:
space:
mode:
Diffstat (limited to 'hacking/metadata-tool.py')
-rwxr-xr-xhacking/metadata-tool.py8
1 files changed, 6 insertions, 2 deletions
diff --git a/hacking/metadata-tool.py b/hacking/metadata-tool.py
index df0a2fb702..795511f7f9 100755
--- a/hacking/metadata-tool.py
+++ b/hacking/metadata-tool.py
@@ -560,8 +560,12 @@ def report(version=None):
print('== Summary ==')
print('No Metadata: {0} Has Metadata: {1}'.format(len(no_metadata), len(has_metadata)))
- print('Supported by core: {0} Supported by community: {1} Supported by committer: {2}'.format(len(support['core']), len(support['community']), len(support['committer'])))
- print('Status StableInterface: {0} Status Preview: {1} Status Deprecated: {2} Status Removed: {3}'.format(len(status['stableinterface']), len(status['preview']), len(status['deprecated']), len(status['removed'])))
+ print('Supported by core: {0} Supported by community: {1} Supported by committer: {2}'.format(len(support['core']), len(support['community']),
+ len(support['committer'])))
+ print('Status StableInterface: {0} Status Preview: {1} Status Deprecated: {2} Status Removed: {3}'.format(len(status['stableinterface']),
+ len(status['preview']),
+ len(status['deprecated']),
+ len(status['removed'])))
return 0