# HG changeset patch -- Bitbucket.org # Project galaxy-dist # URL http://bitbucket.org/galaxy/galaxy-dist/overview # User rc # Date 1282836100 14400 # Node ID cd88e599e8fe64bf86ac059c61b130c8cbaf1b52 # Parent 7b9f46307153d0bba1b2253204ad28695d373313 removed print stmt
--- a/lib/galaxy/model/migrate/versions/0057_request_notify.py +++ b/lib/galaxy/model/migrate/versions/0057_request_notify.py @@ -53,9 +53,7 @@ def upgrade(): cmd = "SELECT id, notification FROM request" result = db_session.execute( cmd ) for r in result: - print r, str(r[1]) rr = from_json_string(str(r[1])) - print r[0], type(rr), rr, rr['email'], rr['sample_states']
# remove the 'notify' column try:
galaxy-commits@lists.galaxyproject.org