1 new commit in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/changeset/8155a8ff8dd4/ changeset: 8155a8ff8dd4 user: dannon date: 2012-11-19 19:02:12 summary: Require pexpect -- previously not explicitly required affected #: 1 file diff -r 886d8ada4a2215aa4b69244908cb4859352a2f03 -r 8155a8ff8dd4f8aaabe4cee31ca0415c39302ed3 lib/galaxy/model/__init__.py --- a/lib/galaxy/model/__init__.py +++ b/lib/galaxy/model/__init__.py @@ -5,9 +5,10 @@ the relationship cardinalities are obvious (e.g. prefer Dataset to Data) """ -import pkg_resources, os, errno, codecs, operator, socket, pexpect, logging, time -pkg_resources.require( "simplejson" ) -import simplejson +import pkg_resources +pkg_resources.require("simplejson") +pkg_resources.require("pexpect") +import simplejson, os, errno, codecs, operator, socket, pexpect, logging, time from sqlalchemy.orm import object_session from sqlalchemy.sql.expression import func import galaxy.datatypes 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.