Skip to content

Commit

Permalink
Update export_py_object.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
DerThorsten authored Mar 20, 2024
1 parent 65c8f4e commit 5e4d8af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/export_py_object.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,13 +182,13 @@ namespace pyjs
}
catch (py::error_already_set& e)
{
std::cout << "unhanded error: " << e.what() << "\n";
std::cout << "unhandled error: " << e.what() << "\n";
}
catch( const std::exception &e) {
std::cout << "unhanded error: " << e.what() << "\n";
std::cout << "unhandled error: " << e.what() << "\n";
}
catch(...){
std::cout<<"catched unhanded something.\n";
std::cout<<"catched unhandled something.\n";
}
}))

Expand Down

0 comments on commit 5e4d8af

Please sign in to comment.