Skip to content

Commit

Permalink
[fix] Add missing newline to error message
Browse files Browse the repository at this point in the history
  • Loading branch information
mxmlnkn committed Feb 20, 2024
1 parent 8fc49b6 commit 70fb977
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/filereader/Python.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class ScopedGIL
PyGILState_Release( lockState );
lockState = {};
}
std::cerr << "Detected Python finalization from running rapidgzip thread."
std::cerr << "Detected Python finalization from running rapidgzip thread.\n"
"To avoid this exception you should close all RapidgzipFile objects correctly,\n"
"or better, use the with-statement if possible to automatically close it.\n";
std::terminate();
Expand Down

0 comments on commit 70fb977

Please sign in to comment.