From 2968343a624f304d4bd1ef9abfa9be069294c6e8 Mon Sep 17 00:00:00 2001 From: jamesbunton Date: Sat, 15 Jul 2006 01:31:42 +0000 Subject: [PATCH] Fixed md5 update routine to work if spooldir is not set. git-svn-id: http://delx.cjb.net/svn/pymsnt/trunk@199 55fbd22a-6204-0410-b2f0-b6c764c7e90a committer: jamesbunton --- src/housekeep.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/housekeep.py b/src/housekeep.py index 882e35c..82a459b 100644 --- a/src/housekeep.py +++ b/src/housekeep.py @@ -133,8 +133,8 @@ def doMD5HashDirUpgrade(): if os.path.exists(pre + "avatars"): # Remove the avatars dir that gets created when we import # legacy/glue.py (it only contains the defaultAvatar) - shutil.rmtree(config.spooldir + X + "avatars") - shutil.move(pre + "avatars", config.spooldir + X + "avatars") + shutil.rmtree(os.path.join(config.spooldir, "avatars")) + shutil.move(pre + "avatars", os.path.join(config.spooldir, "avatars")) else: print "Could not move your cached avatars directory automatically. It is safe to delete it, the avatars will be recreated as necessary." -- 2.39.2