Skip to content

Commit d26eac9

Browse files
author
Joe Hamman
committed
Merge pull request #26 from jhamman/hotfix.1.0.1
hotfix.1.0.1
2 parents 851b23a + e618fd0 commit d26eac9

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

rvic/core/history.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,9 +269,6 @@ def update(self, data2tape, time_ord):
269269
# Determine next update
270270
self.__next_update_out_data()
271271

272-
# Determine when the next write should be and initialize out_data
273-
self.__next_write_out_data()
274-
275272
# zero out temp_data
276273
for field in self._fincl:
277274
self._temp_data[field][:] = 0.0
@@ -384,6 +381,9 @@ def __update_out_data(self):
384381
if self._out_data_i == self._out_data_write:
385382
self.finish()
386383
self._out_data_i = 0
384+
385+
# Determine when the next write should be and initialize out_data
386+
self.__next_write_out_data()
387387
else:
388388
self._out_data_i += 1
389389
log.debug('out_data counter is %s of %s', self._out_data_i,

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
from distutils.core import setup
1111
from distutils.extension import Extension
1212

13-
MAJOR = 0
14-
MINOR = 3
15-
MICRO = 0
13+
MAJOR = 1
14+
MINOR = 0
15+
MICRO = 1
1616
ISRELEASED = False
1717
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
1818
QUALIFIER = ''

0 commit comments

Comments
 (0)