Skip to content

Commit 450c504

Browse files
committed
Remove parens from error message
1 parent c1cf65d commit 450c504

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/_zstd/compressor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ _zstd_ZstdCompressor_set_pledged_input_size_impl(ZstdCompressor *self,
764764
if (self->last_mode != ZSTD_e_end) {
765765
PyErr_SetString(PyExc_RuntimeError,
766766
"set_pledged_input_size() method must be called "
767-
"when (last_mode == FLUSH_FRAME)");
767+
"when last_mode == FLUSH_FRAME");
768768
goto error;
769769
}
770770

0 commit comments

Comments
 (0)