From df44be36325fa0a120272cf086880253858566be Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Fri, 2 Oct 2015 11:33:04 +0700 Subject: [PATCH] Fix bug in XPlane.x0 --- openmc/surface.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/surface.py b/openmc/surface.py index 0be62fbf5a..98ec903c7c 100644 --- a/openmc/surface.py +++ b/openmc/surface.py @@ -287,7 +287,7 @@ class XPlane(Plane): @property def x0(self): - return self.coeff['x0'] + return self._coeffs['x0'] @x0.setter def x0(self, x0):