From b327a78522cc3c0d4d3a77d0694664b6bf0b83f6 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Mon, 2 May 2011 19:24:49 +0000 Subject: [PATCH] minor minor update of the last commit --- plugins/generic/filesystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/generic/filesystem.py b/plugins/generic/filesystem.py index 2da67b998..f05f41ec2 100644 --- a/plugins/generic/filesystem.py +++ b/plugins/generic/filesystem.py @@ -266,7 +266,7 @@ class Filesystem: self.checkDbmsOs() - if Backend.isOs(OS.WINDOWS) and not re.search(r'\A[A-Z]:\\', rFile, re.I) or\ + if Backend.isOs(OS.WINDOWS) and not re.search(r'\A[A-Z]:', rFile, re.I) or\ Backend.isOs(OS.LINUX) and not rFile.startswith('/'): errMsg = "invalid file path used for the underlying operating " errMsg += "system '%s' of the back-end '%s' server ('%s')" % (Backend.getOs(), Backend.getDbms(), rFile)