From e7ddc2fcabd6d1ccadd3278e480334e832997c64 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Thu, 23 May 2013 12:57:33 +0400 Subject: [PATCH] Minor fix --- lib/core/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/core/common.py b/lib/core/common.py index 2ace05580..e3ffca77b 100644 --- a/lib/core/common.py +++ b/lib/core/common.py @@ -711,7 +711,7 @@ def getDirs(): warnMsg = "unable to retrieve automatically any web server path" logger.warn(warnMsg) - webDir = extractRegexResult(r"//[^/]+?/(?P.*)/.", conf.url) + webDir = extractRegexResult(r"//[^/]+?/(?P.*)/", conf.url) if webDir: directories.add(webDir)