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:
authormakowalski <makowalski@nvidia.com>2020-12-14 04:49:32 +0300
committermakowalski <makowalski@nvidia.com>2020-12-14 04:49:32 +0300
commit53d3afa0686c3fe5c6c98a7dd46d854efa08b522 (patch)
tree2aeb3c4c13c9bc2ef29644c333281d7cb6cc9822
parentc8ae60e2dfd0aeafee231dbd63adb477bca8c128 (diff)
Fixed USD Import error message.
-rw-r--r--source/blender/io/usd/intern/usd_capi.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/io/usd/intern/usd_capi.cc b/source/blender/io/usd/intern/usd_capi.cc
index 73a1a5ede14..4916b071868 100644
--- a/source/blender/io/usd/intern/usd_capi.cc
+++ b/source/blender/io/usd/intern/usd_capi.cc
@@ -289,7 +289,7 @@ static void import_startjob(void *user_data, short *stop, short *do_update, floa
data->stage = pxr::UsdStage::Open(data->filename);
if (!data->stage) {
- WM_reportf(RPT_ERROR, "USD Export: couldn't open USD stage for file %s", data->filename);
+ WM_reportf(RPT_ERROR, "USD Import: couldn't open USD stage for file %s", data->filename);
return;
}