[py-svn] r34711 - py/dist/py/bin
fijal at codespeak.net
fijal at codespeak.net
Fri Nov 17 16:47:31 CET 2006
Author: fijal
Date: Fri Nov 17 16:47:29 2006
New Revision: 34711
Modified:
py/dist/py/bin/_findpy.py
Log:
Moved print to stderr.
Modified: py/dist/py/bin/_findpy.py
==============================================================================
--- py/dist/py/bin/_findpy.py (original)
+++ py/dist/py/bin/_findpy.py Fri Nov 17 16:47:29 2006
@@ -19,7 +19,7 @@
# if p == current:
# return True
if current != sys.path[0]: # if we are already first, then ok
- print "inserting into sys.path:", current
+ print >>sys.stderr, "inserting into sys.path:", current
sys.path.insert(0, current)
return True
current = opd(current)
More information about the py-svn
mailing list