summaryrefslogtreecommitdiff
path: root/packages/python
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2008-02-27 17:12:53 +0000
committerMichael Lauer <mickey@vanille-media.de>2008-02-27 17:12:53 +0000
commit963292b280b5c5158f47086c3425b6aa11c8ed15 (patch)
tree1f2c2ccf299a1088750f39a8255a6ecf6af6ec41 /packages/python
parent0ee73dca5557b08e170146a7e1727f70da0e3a62 (diff)
python 2.5.2 silence sitecustomize.py
Diffstat (limited to 'packages/python')
-rw-r--r--packages/python/python-2.5.2/sitecustomize.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/packages/python/python-2.5.2/sitecustomize.py b/packages/python/python-2.5.2/sitecustomize.py
index 4c0ba3f0da..ec626b4b63 100644
--- a/packages/python/python-2.5.2/sitecustomize.py
+++ b/packages/python/python-2.5.2/sitecustomize.py
@@ -37,9 +37,8 @@ import sys
try:
import rlcompleter, readline
except ImportError:
- sys.stderr.write( "Python %s (OpenEmbedded build) sitecustomize.py not active. Please install python-readline.\n" % sys.version.split()[0] )
+ pass
else:
__enableDefaultEncoding()
__registerExitHandler()
__enableReadlineSupport()
- sys.stderr.write( "Python %s (OpenEmbedded build) sitecustomize.py active.\n" % sys.version.split()[0] )