From 9697a446fa48d1bef6684f842fcd78a93f9c7bb7 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Thu, 29 Nov 2007 23:03:38 +0000 Subject: Better version checks --- (limited to 'webactivity.py') diff --git a/webactivity.py b/webactivity.py index d52788b..70f57be 100755 --- a/webactivity.py +++ b/webactivity.py @@ -48,10 +48,15 @@ if os.path.exists(_version_file): f.close() if _profile_version < 1: - os.mkdir(_profile_path) + if not os.path.exists(_profile_path): + os.mkdir(_profile_path) shutil.copy('cert8.db', _profile_path) os.chmod(os.path.join(_profile_path, 'cert8.db'), 0600) +f = open(_version_file, 'w') +f.write(str(PROFILE_VERSION)) +f.close() + import hulahop hulahop.startup(_profile_path) -- cgit v0.9.1