1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/12a45cc8c67f/ Changeset: 12a45cc8c67f User: carlfeberhard Date: 2013-06-14 21:01:12 Summary: Remove print statements from api/search, ctrl/visualization, ctrl/workflow Affected #: 3 files diff -r 48b7d75bbb339e27a6db906dd5b1b2a2dbbaaf71 -r 12a45cc8c67f86f595f50bfcf2155892f5eafeb0 lib/galaxy/webapps/galaxy/api/search.py --- a/lib/galaxy/webapps/galaxy/api/search.py +++ b/lib/galaxy/webapps/galaxy/api/search.py @@ -30,7 +30,6 @@ current_user_roles = trans.get_current_user_roles() try: results = query.process(trans) - print results except Exception, e: return {'error' : str(e)} for item in results: diff -r 48b7d75bbb339e27a6db906dd5b1b2a2dbbaaf71 -r 12a45cc8c67f86f595f50bfcf2155892f5eafeb0 lib/galaxy/webapps/galaxy/controllers/visualization.py --- a/lib/galaxy/webapps/galaxy/controllers/visualization.py +++ b/lib/galaxy/webapps/galaxy/controllers/visualization.py @@ -848,7 +848,6 @@ get the visualization with the given id; otherwise, create a new visualization using a given dataset and regions. """ - print 'sweepster:', id, hda_ldda, dataset_id, regions regions = regions or '{}' # Need to create history if necessary in order to create tool form. trans.get_history( create=True ) @@ -861,7 +860,6 @@ else: # Loading new visualization. dataset = self.get_hda_or_ldda( trans, hda_ldda, dataset_id ) - print 'dataset:', dataset job = get_dataset_job( dataset ) viz_config = { 'dataset_id': dataset_id, diff -r 48b7d75bbb339e27a6db906dd5b1b2a2dbbaaf71 -r 12a45cc8c67f86f595f50bfcf2155892f5eafeb0 lib/galaxy/webapps/galaxy/controllers/workflow.py --- a/lib/galaxy/webapps/galaxy/controllers/workflow.py +++ b/lib/galaxy/webapps/galaxy/controllers/workflow.py @@ -132,7 +132,6 @@ @web.expose def index( self, trans ): - print trans.request.host_url return self.list( trans ) @web.expose 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.