##// END OF EJS Templates
revlog: use %d to format int instead of %lu (issue6565)...
av6 -
r50106:675594a0 default
parent child Browse files
Show More
@@ -497,7 +497,7 b' static PyObject *index_pack_header(index'
497 if (self->format_version != format_v1) {
497 if (self->format_version != format_v1) {
498 PyErr_Format(PyExc_RuntimeError,
498 PyErr_Format(PyExc_RuntimeError,
499 "version header should go in the docket, not the "
499 "version header should go in the docket, not the "
500 "index: %lu",
500 "index: %d",
501 header);
501 header);
502 return NULL;
502 return NULL;
503 }
503 }
General Comments 0
You need to be logged in to leave comments. Login now