]> git.rkrishnan.org Git - tahoe-lafs/zfec.git/commitdiff
zfec: formatting of error messages
authorzooko <zooko@zooko.com>
Thu, 27 Sep 2007 22:38:59 +0000 (04:08 +0530)
committerzooko <zooko@zooko.com>
Thu, 27 Sep 2007 22:38:59 +0000 (04:08 +0530)
darcs-hash:e53d637d7de42d05f59a40d093e4e9f8dc77113b

zfec/zfec/_fecmodule.c

index 5c59870c63191fe4dc1edfe6e516656eef7e311c..905030047681ee3446fdff93f3cd477d7c22544f 100644 (file)
@@ -167,13 +167,13 @@ Encoder_encode(Encoder *self, PyObject *args) {
     Py_ssize_t sz, oldsz = 0;
     for (i=0; i<self->kk; i++) {
         if (!PyObject_CheckReadBuffer(fastinblocksitems[i])) {
-            py_raise_fec_error("Precondition violation: %u'th item is required to offer the single-segment read character buffer protocol, but it does not.\n", i);
+            py_raise_fec_error("Precondition violation: %u'th item is required to offer the single-segment read character buffer protocol, but it does not.", i);
             goto err;
         }
         if (PyObject_AsReadBuffer(fastinblocksitems[i], (const void**)&(incblocks[i]), &sz))
             goto err;
         if (oldsz != 0 && oldsz != sz) {
-            py_raise_fec_error("Precondition violation: Input blocks are required to be all the same length.  oldsz: %Zu, sz: %Zu\n", oldsz, sz);
+            py_raise_fec_error("Precondition violation: Input blocks are required to be all the same length.  oldsz: %Zu, sz: %Zu", oldsz, sz);
             goto err;
         }
         oldsz = sz;