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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2008-02-20 16:42:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2008-02-20 16:42:15 +0300
commitcf27a896faf6e5fee7eeea9e70fbee1a9447572f (patch)
treee84b3e2a3ffd6d7f92138771d5ecb0929e1a3669 /source/blender/python/BPY_extern.h
parent6862acc1b3fca36cdbd629b7300d03f30c914874 (diff)
Python Bugfix,
Setting the user preference for python scripts didnt add the bpymodules subdirectory to sys.path (python module search path). Also problems with entering and exiting- the old path was used until next restart.
Diffstat (limited to 'source/blender/python/BPY_extern.h')
-rw-r--r--source/blender/python/BPY_extern.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/python/BPY_extern.h b/source/blender/python/BPY_extern.h
index 28c4c2f55ff..8b4760fe25d 100644
--- a/source/blender/python/BPY_extern.h
+++ b/source/blender/python/BPY_extern.h
@@ -85,6 +85,7 @@ extern "C" {
void BPY_post_start_python( void );
void init_syspath( int first_time );
void syspath_append( char *dir );
+ void BPY_rebuild_syspath( void );
int BPY_Err_getLinenumber( void );
const char *BPY_Err_getFilename( void );