Fixed syntax error

This commit is contained in:
nhorelik 2013-04-17 17:16:15 -04:00
parent 1615e04f9a
commit dbaa3dc66a

View file

@ -561,7 +561,7 @@ class StatePoint(object):
def _get_long(self, n=1, path=None):
if self._hdf5:
return [float(v) for v self._f[path].value]
return [float(v) for v in self._f[path].value]
else:
return [float(v) for v in self._get_data(n, 'q', 8)]