Skip to content

Commit

Permalink
Fix bug in history sharing.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgruening committed May 14, 2015
1 parent 0630ae9 commit 62772bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/galaxy/webapps/galaxy/controllers/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -899,7 +899,7 @@ def _get_histories( self, trans, ids ):
for history_id in ids:
history_id = self.decode_id( history_id )
history = self.history_manager.get_owned( history_id, trans.user, current_history=trans.history )
histories.append( )
histories.append( history )
return histories

def _get_users( self, trans, user, emails_or_ids ):
Expand Down

0 comments on commit 62772bc

Please sign in to comment.