From ac918d02e626ec0fe8cb3b456162725d2988bf8e Mon Sep 17 00:00:00 2001 From: ThomasV Date: Fri, 9 Dec 2011 21:54:05 +0300 Subject: [PATCH] fix version in setup.py --- client/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/setup.py b/client/setup.py index 8beb968a..97679d86 100644 --- a/client/setup.py +++ b/client/setup.py @@ -3,10 +3,10 @@ # python setup.py sdist --format=zip,gztar from distutils.core import setup -from version import ELECTRUM_VERSION +from version import ELECTRUM_VERSION as version setup(name = "Electrum", - version = ELECTRUM_VERSION, + version = version, description = "Lightweight Bitcoin Wallet", author = "thomasv", license = "GNU GPLv3",