diff --git a/src/CachedResolver/wrapResolverContext.cpp b/src/CachedResolver/wrapResolverContext.cpp index 99cd7b2..dbd53ac 100644 --- a/src/CachedResolver/wrapResolverContext.cpp +++ b/src/CachedResolver/wrapResolverContext.cpp @@ -44,7 +44,7 @@ wrapResolverContext() .def("__hash__", _Hash) .def("__repr__", _Repr) .def("ClearAndReinitialize", &This::ClearAndReinitialize, "Clear mapping and cache pairs and re-initialize context (with mapping file path)") - .def("GetMappingFilePath", &This::GetMappingFilePath, return_value_policy(), "Get the mapping file path (Defaults to file that the context created via Resolver.CreateDefaultContextForAsset() opened")") + .def("GetMappingFilePath", &This::GetMappingFilePath, return_value_policy(), "Get the mapping file path (Defaults to file that the context created via Resolver.CreateDefaultContextForAsset() opened") .def("SetMappingFilePath", &This::SetMappingFilePath, "Set the mapping file path") .def("RefreshFromMappingFilePath", &This::RefreshFromMappingFilePath, "Reload mapping pairs from the mapping file path") .def("GetMappingPairs", &This::GetMappingPairs, return_value_policy(), "Returns all mapping pairs as a dict")