From: oetiker Date: Thu, 19 Jun 2008 13:18:04 +0000 (+0000) Subject: rrdtool.fetch is returning an extra, bogus, data point. Attached is a X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=617666077854be80611e7663312e67ca913fad9b;p=rrdtool-all.git rrdtool.fetch is returning an extra, bogus, data point. Attached is a patch to correct this. - Gilad Raphaelli. Fix for #161 git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2@1436 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/program/bindings/python/rrdtoolmodule.c b/program/bindings/python/rrdtoolmodule.c index 497059d2..1fe4c0ca 100644 --- a/program/bindings/python/rrdtoolmodule.c +++ b/program/bindings/python/rrdtoolmodule.c @@ -175,7 +175,7 @@ PyRRD_fetch(PyObject UNUSED(*self), PyObject *args) unsigned long i, j, row; rrd_value_t dv; - row = ((end - start) / step + 1); + row = (end - start) / step; r = PyTuple_New(3); range_tup = PyTuple_New(3);