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:
authorAndrea Weikert <elubie@gmx.net>2013-11-02 14:37:42 +0400
committerAndrea Weikert <elubie@gmx.net>2013-11-02 14:37:42 +0400
commit4cf57c02fab189239620432ff681d3b6d4f78599 (patch)
treee2dac59d641f04f875de2db6d6e8bc66993e113f /source/blender/makesrna/intern/rna_userdef.c
parentfc618bbcbffaa6f029c80a5d541728a4c4c9c608 (diff)
Fix: error message when removing an 'Excluded path' for python execution, small leftover from copy/paste
Diffstat (limited to 'source/blender/makesrna/intern/rna_userdef.c')
-rw-r--r--source/blender/makesrna/intern/rna_userdef.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 2a12194dfa1..3b5d669ffdb 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -367,7 +367,7 @@ static void rna_userdef_pathcompare_remove(ReportList *reports, PointerRNA *path
{
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;
}