commit/galaxy-central: jmchilton: Fix bug in 4f7e715 that actually allows multiple repeat values to be specified via API.
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/1560813167c0/ Changeset: 1560813167c0 User: jmchilton Date: 2013-11-15 06:39:52 Summary: Fix bug in 4f7e715 that actually allows multiple repeat values to be specified via API. Affected #: 1 file diff -r 55e0fe991c42a3d1551ae9965d2186b6870aaba9 -r 1560813167c0072773738cdf57103ecc0191b327 lib/galaxy/tools/__init__.py --- a/lib/galaxy/tools/__init__.py +++ b/lib/galaxy/tools/__init__.py @@ -2084,7 +2084,7 @@ rep_index = 0 while True: rep_name = "%s_%d" % ( key, rep_index ) - if not any( [ key.startswith(rep_name) for key in incoming.keys() ] ): + if not any( [ incoming_key.startswith(rep_name) for incoming_key in incoming.keys() ] ): break if rep_index < input.max: new_state = {} 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.
participants (1)
-
commits-noreply@bitbucket.org