[Bf-blender-cvs] [2a0509e2590] soc-2020-info-editor: Remove print

Mateusz Grzeliński noreply at git.blender.org
Fri Jul 3 17:08:56 CEST 2020


Commit: 2a0509e25905b37eb9708dbc9f58f02a6fbee81b
Author: Mateusz Grzeliński
Date:   Fri Jul 3 12:46:29 2020 +0200
Branches: soc-2020-info-editor
https://developer.blender.org/rB2a0509e25905b37eb9708dbc9f58f02a6fbee81b

Remove print

this print is doubling on string that is printed line above

===================================================================

M	source/blender/python/intern/bpy_capi_utils.c

===================================================================

diff --git a/source/blender/python/intern/bpy_capi_utils.c b/source/blender/python/intern/bpy_capi_utils.c
index ba96d6ee7e8..43632d8b481 100644
--- a/source/blender/python/intern/bpy_capi_utils.c
+++ b/source/blender/python/intern/bpy_capi_utils.c
@@ -151,9 +151,6 @@ bool BPy_errors_to_report_ex(ReportList *reports, const bool use_full, const boo
     cstring = _PyUnicode_AsString(pystring_format);
     BKE_report(reports, RPT_ERROR, cstring);
 
-    /* not exactly needed. just for testing */
-    fprintf(stderr, TIP_("%s\nlocation: %s:%d\n"), cstring, filename, lineno);
-
     Py_DECREF(pystring_format); /* workaround */
 #endif
   }



More information about the Bf-blender-cvs mailing list