diff --git a/cython/core/triangulation.pyx b/cython/core/triangulation.pyx index 7d9e54d31..2eb2207a1 100644 --- a/cython/core/triangulation.pyx +++ b/cython/core/triangulation.pyx @@ -352,7 +352,7 @@ cdef class Triangulation(): if self._PDcode is not None: return spherogram.Link(self._PDcode) elif self.DT_code() is not None: - return spherogram.DTcodec(self.DT_code()).link() + return spherogram.DTcodec(*self.DT_code(flips=True)).link() else: raise ValueError('No associated link known.')