Skip to content

Commit

Permalink
Merge ff1af66 into 77270cc
Browse files Browse the repository at this point in the history
  • Loading branch information
revesansparole committed Aug 8, 2019
2 parents 77270cc + ff1af66 commit 7f3464a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pkglts/config_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def installed_options(self, return_sorted=False):
while opt_names:
name = opt_names.pop(0)
opt = available_options[name]
if any(dep.name not in installed for dep in opt.require_option()):
if any(dep not in installed for dep in opt.require_option()):
opt_names.append(name)
else:
installed.append(name)
Expand Down
2 changes: 1 addition & 1 deletion src/pkglts/manage_script.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def action_info(cfg, **kwds):
opt_names = kwds['option']
all_opts = False
if not opt_names:
opt_names = cfg.installed_options()
opt_names = cfg.installed_options(return_sorted=True)
all_opts = True

outdated = outdated_options(cfg)
Expand Down

0 comments on commit 7f3464a

Please sign in to comment.