Skip to content

Commit

Permalink
Corrected another numpy type issue
Browse files Browse the repository at this point in the history
Refs #7860
  • Loading branch information
DanNixon committed Sep 24, 2014
1 parent 9becaa9 commit bbfab11
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -245,7 +245,7 @@ def _generate_props_table(self):
props_table.addColumn('int', 'PositiveXMinIndex')
props_table.addColumn('int', 'PositiveXMaxIndex')

props_table.addRow([self._negative_min_index, self._positive_min_index, self._positive_max_index])
props_table.addRow([int(self._negative_min_index), int(self._positive_min_index), int(self._positive_max_index)])

self.setProperty('OutputPropertiesTable', self._props_output_workspace)

Expand Down

0 comments on commit bbfab11

Please sign in to comment.