[hg] galaxy 2964: Eliminate printing PYTHONPATH to stderr in the...
details: http://www.bx.psu.edu/hg/galaxy/rev/0d534da7f0ff changeset: 2964:0d534da7f0ff user: Greg Von Kuster <greg@bx.psu.edu> date: Wed Nov 04 13:09:37 2009 -0500 description: Eliminate printing PYTHONPATH to stderr in the cleanup_datasets.py script. diffstat: scripts/cleanup_datasets/cleanup_datasets.py | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) diffs (11 lines): diff -r fdf07565eedf -r 0d534da7f0ff scripts/cleanup_datasets/cleanup_datasets.py --- a/scripts/cleanup_datasets/cleanup_datasets.py Wed Nov 04 12:58:48 2009 -0500 +++ b/scripts/cleanup_datasets/cleanup_datasets.py Wed Nov 04 13:09:37 2009 -0500 @@ -387,7 +387,6 @@ class CleanupDatasetsApplication( object ): """Encapsulates the state of a Universe application""" def __init__( self, database_connection=None, file_path=None ): - print >> sys.stderr, "python path is: " + ", ".join( sys.path ) if database_connection is None: raise Exception( "CleanupDatasetsApplication requires a database_connection value" ) if file_path is None:
participants (1)
-
Greg Von Kuster