Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorStephen Swaney <sswaney@centurytel.net>2004-11-07 20:28:15 +0300
committerStephen Swaney <sswaney@centurytel.net>2004-11-07 20:28:15 +0300
commit17217648e599e8b806e5f7e0182a8963bb54b5e6 (patch)
treed85e9aab03d1bb7ad320b8754e1ad533795baf31 /source
parent0f84375d7afeccdaeb7a84af16aa46b1a521286f (diff)
less scary 'python not found' msg was too warm and fuzzy.
now msg is less less scary and invisible if python is available.
Diffstat (limited to 'source')
-rw-r--r--source/blender/python/BPY_interface.c4
1 files changed, 0 insertions, 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!!! */