diff options
-rwxr-xr-x | repa/info.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/repa/info.py b/repa/info.py index 011078d..f609f2d 100755 --- a/repa/info.py +++ b/repa/info.py @@ -91,7 +91,8 @@ def info(obs, name, target): result = defaultdict(list) for (repo, arch), target in build_results.iteritems(): for pkg, status in target['packages']: - if status not in ('succeeded', 'building', 'blocked'): + if status not in ('succeeded', 'building', + 'blocked', 'disabled'): result[(repo, arch)].append((pkg, status)) if result: print |