From e3466fa5d8f2aeef3a43cba768d11610ed65c87c Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 3 Feb 2012 15:28:11 +0000 Subject: [PATCH] minor update --- plugins/generic/misc.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/generic/misc.py b/plugins/generic/misc.py index 0e2815ed7..214fa48d9 100644 --- a/plugins/generic/misc.py +++ b/plugins/generic/misc.py @@ -43,8 +43,10 @@ class Miscellaneous: if Backend.getOsVersion() == "2000": conf.tmpPath = "C:/WINNT/Temp" - else: + elif Backend.getOsVersion() == "2003": conf.tmpPath = "C:/Documents and Settings/All Users/Application Data/TEMP" + else: + conf.tmpPath = "C:/Users/All Users/Application Data/TEMP" else: conf.tmpPath = "/tmp"