From 1cb3439b06735df6a72decf57ebe78eba22f1e75 Mon Sep 17 00:00:00 2001 From: Zach Tibbitts Date: Thu, 14 Jun 2007 21:10:22 +0000 Subject: [PATCH] v --- src/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common.py b/src/common.py index 4200b833d..022a3706f 100644 --- a/src/common.py +++ b/src/common.py @@ -34,10 +34,10 @@ import xdg, xdg.BaseDirectory import gettext PROGRAM_NAME = "Deluge" -PROGRAM_VERSION = "0.5.2.0" +PROGRAM_VERSION = "0.5.2" CLIENT_CODE = "DE" -CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.')) +CLIENT_VERSION = "".join(PROGRAM_VERSION.split('.'))+"0"*(4 - len(PROGRAM_VERSION.split('.'))) CONFIG_DIR = xdg.BaseDirectory.save_config_path('deluge')