From 8cefb88d9cf0296d1d883978adde8e3ed8ee34f9 Mon Sep 17 00:00:00 2001 From: hpk Date: Mon, 18 Aug 2008 21:03:25 +0200 Subject: [PATCH] [svn r57445] retain the behaviour of printing if we insert to sys.path --HG-- branch : trunk --- py/bin/_findpy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/bin/_findpy.py b/py/bin/_findpy.py index f8fc2a818..c1e208fae 100755 --- a/py/bin/_findpy.py +++ b/py/bin/_findpy.py @@ -19,7 +19,7 @@ def searchpy(current): # if p == current: # return True if current != sys.path[0]: # if we are already first, then ok - #print >>sys.stderr, "inserting into sys.path:", current + print >>sys.stderr, "inserting into sys.path:", current sys.path.insert(0, current) return True current = opd(current)