Skip to content

Commit

Permalink
fixed datatable api
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto De Ioris committed Dec 29, 2017
1 parent 7371c0d commit 098f306
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ PyObject *py_ue_data_table_add_row(ue_PyUObject * self, PyObject * args)

if (data_table->RowStruct != u_struct->u_struct)
{
return PyErr_Format(PyExc_Exception, "argument is not a %s", data_table->RowStruct->GetName());
return PyErr_Format(PyExc_Exception, "argument is not a %s", TCHAR_TO_UTF8(*data_table->RowStruct->GetName()));
}

FName row_name = FName(UTF8_TO_TCHAR(name));
Expand Down

0 comments on commit 098f306

Please sign in to comment.