From d0f7d306b608259890eb8eba02db7bd3903c0328 Mon Sep 17 00:00:00 2001 From: Simon Clitherow Date: Thu, 29 Jan 2004 22:12:14 +0000 Subject: [PATCH] second last minute commit! -- removed a trailing slash which prevented win32 from locating .blender/scripts. I'm hoping other OSes are a little more forgiving about these things... but PLEASE test, else we may need to #ifdef it. --- source/blender/python/BPY_menus.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/python/BPY_menus.c b/source/blender/python/BPY_menus.c index cfe10723329..d947eaa12e1 100644 --- a/source/blender/python/BPY_menus.c +++ b/source/blender/python/BPY_menus.c @@ -680,7 +680,7 @@ int BPyMenu_Init(int usedir) if (U.pythondir[0] == '\0') upydir = NULL; - BLI_make_file_string ("/", dirname, bpymenu_gethome(), "scripts/"); + BLI_make_file_string ("/", dirname, bpymenu_gethome(), "scripts"); res1 = bpymenu_GetStatMTime(dirname, 0, &tdir1);