From: W. Trevor King Date: Tue, 14 Dec 2010 19:53:13 +0000 (-0500) Subject: Fix == -> = in __version__ definition. X-Git-Tag: 0.3~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5d03708f2d04a434b045f566fb2a8baf1c66b94e;p=pycomedi.git Fix == -> = in __version__ definition. --- 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'