details: http://www.bx.psu.edu/hg/galaxy/rev/2b730844747b changeset: 2738:2b730844747b user: rc date: Mon Sep 21 12:41:39 2009 -0400 description: added psycopg2 import stmt in galaxy_interface.py
1 file(s) affected in this change:
scripts/galaxy_messaging/galaxydb_interface.py
diffs (13 lines):
diff -r 7a4e6f19aa17 -r 2b730844747b scripts/galaxy_messaging/galaxydb_interface.py --- a/scripts/galaxy_messaging/galaxydb_interface.py Mon Sep 21 12:06:33 2009 -0400 +++ b/scripts/galaxy_messaging/galaxydb_interface.py Mon Sep 21 12:41:39 2009 -0400 @@ -13,7 +13,8 @@ sys.path = new_path from galaxy import eggs import pkg_resources -#pkg_resources.require( "psycopg2 >= 2.0.6" ) +pkg_resources.require( "psycopg2" ) +import psycopg2 pkg_resources.require( "SQLAlchemy >= 0.4" ) from sqlalchemy import * from sqlalchemy.orm import sessionmaker