Fix typo in panic message

This commit is contained in:
Alexander Niederbühl 2020-01-12 14:33:20 +01:00
parent 68726f9674
commit a126f5d0ab
1 changed files with 1 additions and 1 deletions

View File

@ -525,7 +525,7 @@ pub fn panic_after_error() -> ! {
unsafe {
ffi::PyErr_Print();
}
panic!("Python API called failed");
panic!("Python API call failed");
}
/// Returns Ok if the error code is not -1.