Skip to content

Commit

Permalink
Merge pull request #5683 from martenson/fix-2-fixes
Browse files Browse the repository at this point in the history
fix the inconsistency between two library fixes
  • Loading branch information
dannon committed Mar 13, 2018
2 parents 76b305b + ee924ec commit 4558ad6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/managers/libraries.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ def list(self, trans, deleted=False):
allowed_library_manage_ids = set()
for action in all_actions:
if action.action == library_access_action:
accessible_restricted_library_ids.append(action.library_id)
accessible_restricted_library_ids.add(action.library_id)
if action.action == library_add_action:
allowed_library_add_ids.add(action.library_id)
if action.action == library_modify_action:
Expand Down

0 comments on commit 4558ad6

Please sign in to comment.