From 5d03708f2d04a434b045f566fb2a8baf1c66b94e Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Tue, 14 Dec 2010 14:53:13 -0500 Subject: [PATCH] Fix == -> = in __version__ definition. --- pycomedi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pycomedi/__init__.py b/pycomedi/__init__.py index 31243b2..a16f436 100644 --- a/pycomedi/__init__.py +++ b/pycomedi/__init__.py @@ -14,4 +14,4 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -__version__ == '0.2' +__version__ = '0.2' -- 2.26.2