Skip to content

Commit

Permalink
Merge pull request #26 from jhamman/hotfix.1.0.1
Browse files Browse the repository at this point in the history
hotfix.1.0.1
  • Loading branch information
Joe Hamman committed May 23, 2014
2 parents 851b23a + e618fd0 commit d26eac9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions rvic/core/history.py
Expand Up @@ -269,9 +269,6 @@ def update(self, data2tape, time_ord):
# Determine next update
self.__next_update_out_data()

# Determine when the next write should be and initialize out_data
self.__next_write_out_data()

# zero out temp_data
for field in self._fincl:
self._temp_data[field][:] = 0.0
Expand Down Expand Up @@ -384,6 +381,9 @@ def __update_out_data(self):
if self._out_data_i == self._out_data_write:
self.finish()
self._out_data_i = 0

# Determine when the next write should be and initialize out_data
self.__next_write_out_data()
else:
self._out_data_i += 1
log.debug('out_data counter is %s of %s', self._out_data_i,
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -10,9 +10,9 @@
from distutils.core import setup
from distutils.extension import Extension

MAJOR = 0
MINOR = 3
MICRO = 0
MAJOR = 1
MINOR = 0
MICRO = 1
ISRELEASED = False
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
QUALIFIER = ''
Expand Down

0 comments on commit d26eac9

Please sign in to comment.