[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [61060] trunk/blender/source/blender/ makesrna/intern/rna_userdef.c: Fix: error message when removing an ' Excluded path' for python execution, small leftover from copy/paste

Andrea Weikert elubie at gmx.net
Sat Nov 2 11:37:42 CET 2013


Revision: 61060
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=61060
Author:   elubie
Date:     2013-11-02 10:37:42 +0000 (Sat, 02 Nov 2013)
Log Message:
-----------
Fix: error message when removing an 'Excluded path' for python execution, small leftover from copy/paste

Modified Paths:
--------------
    trunk/blender/source/blender/makesrna/intern/rna_userdef.c

Modified: trunk/blender/source/blender/makesrna/intern/rna_userdef.c
===================================================================
--- trunk/blender/source/blender/makesrna/intern/rna_userdef.c	2013-11-02 05:18:31 UTC (rev 61059)
+++ trunk/blender/source/blender/makesrna/intern/rna_userdef.c	2013-11-02 10:37:42 UTC (rev 61060)
@@ -367,7 +367,7 @@
 {
 	bPathCompare *path_cmp = path_cmp_ptr->data;
 	if (BLI_findindex(&U.autoexec_paths, path_cmp) == -1) {
-		BKE_report(reports, RPT_ERROR, "Addon is no longer valid");
+		BKE_report(reports, RPT_ERROR, "Excluded path is no longer valid");
 		return;
 	}
 




More information about the Bf-blender-cvs mailing list