1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/6ec2d7f4a64d/ changeset: 6ec2d7f4a64d user: dannon date: 2011-11-10 20:56:35 summary: Fix for slug check flag pointed out by Andrew Warren. affected #: 1 file diff -r 429f6b869c71b2aa2df8d6b61b6e12cd22fc8a4d -r 6ec2d7f4a64dcf6a1c49415bd8f40c8d4ca907c5 lib/galaxy/web/controllers/workflow.py --- a/lib/galaxy/web/controllers/workflow.py +++ b/lib/galaxy/web/controllers/workflow.py @@ -149,7 +149,8 @@ # Legacy issue: all shared workflows must have slugs. slug_set = False for workflow_assoc in shared_by_others: - slug_set = self.create_item_slug( trans.sa_session, workflow_assoc.stored_workflow ) + if self.create_item_slug( trans.sa_session, workflow_assoc.stored_workflow ): + slug_set = True if slug_set: trans.sa_session.flush() Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.