Browse Source

!6617 improve keywordarg tostring function

Merge pull request !6617 from zhangbuxue/improve_keywordarg_tostring_function
tags/v1.0.0
mindspore-ci-bot Gitee 5 years ago
parent
commit
09c0ce8e7f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      mindspore/core/ir/value.cc

+ 1
- 1
mindspore/core/ir/value.cc View File

@@ -266,7 +266,7 @@ std::string KeywordArg::ToString() const {
buffer << "KeywordArg[";
buffer << "key : " << key_;
MS_EXCEPTION_IF_NULL(value_);
buffer << "value : " << value_->ToString();
buffer << ", value : " << value_->ToString();
buffer << "]";
return buffer.str();
}


Loading…
Cancel
Save