Skip to content

Commit

Permalink
Fixed missing method retrieval.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdutton committed Jan 7, 2012
1 parent caf4bf5 commit 855097e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openorg_timeseries/database/base.py
Expand Up @@ -226,7 +226,7 @@ def _combine(self, archive, old_timestamp, state, timestamp, value):
state_value = value
last_intermediate = old_timestamp
for intermediate in intermediates:
data_to_insert(state_value + (value - state_value) * (timestamp - intermediate) / (timestamp - old_timestamp))
data_to_insert.append(state_value + (value - state_value) * (timestamp - intermediate) / (timestamp - old_timestamp))
state = state_value, _
elif self._series_type == 'counter':
state_value, _ = state
Expand Down

0 comments on commit 855097e

Please sign in to comment.