From 5a5fd1db359b190c6207301eb08705a34367968a Mon Sep 17 00:00:00 2001 From: Vivien Maisonneuve Date: Tue, 19 Aug 2014 16:43:59 +0200 Subject: [PATCH] Fix error message in Domain.plot() --- linpy/domains.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linpy/domains.py b/linpy/domains.py index 4b3e982..83f6c2c 100644 --- a/linpy/domains.py +++ b/linpy/domains.py @@ -599,7 +599,7 @@ class Domain(GeometricObject): elif self.dimension == 3: return self._plot_3d(plot=plot, **kwargs) else: - raise ValueError('polyhedron must be 2 or 3-dimensional') + raise ValueError('domain must be 2 or 3-dimensional') def subs(self, symbol, expression=None): """ -- 2.20.1