diff --git a/pybossa/api.py b/pybossa/api.py index 2c038797ac..0ee93b0e14 100644 --- a/pybossa/api.py +++ b/pybossa/api.py @@ -197,7 +197,7 @@ def new_task(app_id): sched = 'default' # Now get a task using the app sched if sched == 'default': - print "%s uses the %s scheduler" % (app.name,sched) + # print "%s uses the %s scheduler" % (app.name,sched) if current_user.is_anonymous(): task = get_default_task(app_id,user_ip=request.remote_addr) else: @@ -211,7 +211,7 @@ def new_task(app_id): task = get_random_task(app_id, user_id=current_user.id) if sched == 'incremental': - print "%s uses the %s scheduler" % (app.name,sched) + # print "%s uses the %s scheduler" % (app.name,sched) if current_user.is_anonymous(): task = get_incremental_task(app_id,user_ip=request.remote_addr) else: