commit/galaxy-central: carlfeberhard: Remove print statements from api/search, ctrl/visualization, ctrl/workflow
1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/2efb1083676b/ Changeset: 2efb1083676b Branch: stable User: carlfeberhard Date: 2013-06-14 21:06:56 Summary: Remove print statements from api/search, ctrl/visualization, ctrl/workflow Affected #: 3 files diff -r 68c705bf0325a54d2424a7b8ed44232c57a3b506 -r 2efb1083676b56c4a2678e43600fd707756fca27 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 68c705bf0325a54d2424a7b8ed44232c57a3b506 -r 2efb1083676b56c4a2678e43600fd707756fca27 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 68c705bf0325a54d2424a7b8ed44232c57a3b506 -r 2efb1083676b56c4a2678e43600fd707756fca27 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.
participants (1)
-
commits-noreply@bitbucket.org