1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/bc1d006b0e66/ Changeset: bc1d006b0e66 User: martenson Date: 2014-05-07 21:27:37 Summary: hunted down bug in streamball implementation that prevented adding files to archive if the filecheck was on and it passed Affected #: 1 file diff -r f7baaf52e94c57cc1a3f7297c191a3e19826293d -r bc1d006b0e66209e26f107ff6b48bfece3777eec lib/galaxy/util/streamball.py --- a/lib/galaxy/util/streamball.py +++ b/lib/galaxy/util/streamball.py @@ -19,6 +19,8 @@ if check_file and len(file)>0: if not os.path.isfile(file): raise ObjectNotFound + else: + self.members[file] = relpath else: self.members[file] = relpath def stream( self, environ, start_response ): 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.