From 17217648e599e8b806e5f7e0182a8963bb54b5e6 Mon Sep 17 00:00:00 2001 From: Stephen Swaney Date: Sun, 7 Nov 2004 17:28:15 +0000 Subject: [PATCH] less scary 'python not found' msg was too warm and fuzzy. now msg is less less scary and invisible if python is available. --- source/blender/python/BPY_interface.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/source/blender/python/BPY_interface.c b/source/blender/python/BPY_interface.c index 5f978b2e8d6..6184b06baa2 100644 --- a/source/blender/python/BPY_interface.c +++ b/source/blender/python/BPY_interface.c @@ -143,8 +143,6 @@ void BPY_start_python( int argc, char **argv ) */ if( first_time ) { /* so it only prints msg on first_time */ - printf( "Checking for Python install...\n" ); - fflush( stdout ); } Py_Initialize( ); @@ -253,8 +251,6 @@ void init_syspath( int first_time ) int size = 0; int index; - if( first_time ) printf( "Installed Python found!\n" ); - /* get the value of 'sitedirs' from the module */ /* the ref man says GetDict() never fails!!! */