commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/4adb47c6fe35/ Changeset: 4adb47c6fe35 User: dan Date: 2013-05-21 16:39:47 Summary: Fix for uploading toolshed repository via hg. Affected #: 1 file diff -r 2b456e2215824614a974f481ef22506ad99267e9 -r 4adb47c6fe35edafaf9fcf84dfda7cd098ef1686 lib/galaxy/webapps/tool_shed/controllers/upload.py --- a/lib/galaxy/webapps/tool_shed/controllers/upload.py +++ b/lib/galaxy/webapps/tool_shed/controllers/upload.py @@ -74,7 +74,7 @@ fd, uploaded_file_name = tempfile.mkstemp() uploaded_file = open( uploaded_file_name, 'wb' ) while 1: - chunk = stream.read( CHUNK_SIZE ) + chunk = stream.read( util.CHUNK_SIZE ) if not chunk: break uploaded_file.write( chunk ) https://bitbucket.org/galaxy/galaxy-central/commits/0973c5acbfda/ Changeset: 0973c5acbfda Branch: next-stable User: dan Date: 2013-05-21 16:39:47 Summary: Fix for uploading toolshed repository via hg. Affected #: 1 file diff -r 632b55655358ee532777a6af0f7ed781905a67d1 -r 0973c5acbfdac9b1de170341a19e4e57606358f8 lib/galaxy/webapps/tool_shed/controllers/upload.py --- a/lib/galaxy/webapps/tool_shed/controllers/upload.py +++ b/lib/galaxy/webapps/tool_shed/controllers/upload.py @@ -74,7 +74,7 @@ fd, uploaded_file_name = tempfile.mkstemp() uploaded_file = open( uploaded_file_name, 'wb' ) while 1: - chunk = stream.read( CHUNK_SIZE ) + chunk = stream.read( util.CHUNK_SIZE ) if not chunk: break uploaded_file.write( chunk ) 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