From 25df148175278a087399b11748afefc71d4e809c Mon Sep 17 00:00:00 2001 From: RaNaN Date: Sat, 11 Sep 2010 22:46:26 +0200 Subject: account parser fix --- module/ConfigParser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'module/ConfigParser.py') diff --git a/module/ConfigParser.py b/module/ConfigParser.py index d5f753b9b..568d22db9 100644 --- a/module/ConfigParser.py +++ b/module/ConfigParser.py @@ -63,7 +63,7 @@ class ConfigParser: f.close() v = v[v.find(":")+1:].strip() - if int(v) < CONF_VERSION: + if not v or int(v) < CONF_VERSION: copy(join(pypath,"module", "config", "default.conf"), "pyload.conf") print "Old version of config was replaced" @@ -72,7 +72,7 @@ class ConfigParser: f.close() v = v[v.find(":")+1:].strip() - if int(v) < CONF_VERSION: + if not v or int(v) < CONF_VERSION: f = open("plugin.conf", "wb") f.write("version: "+str(CONF_VERSION)) f.close() -- cgit v1.2.3