Fix for an Issue #88

This commit is contained in:
Miroslav Stampar
2012-07-13 14:25:39 +02:00
parent 3c81f74823
commit 6677da63cd
2 changed files with 5 additions and 1 deletions

View File

@@ -306,7 +306,8 @@ class Web:
self.webBackdoorUrl = "%s/%s" % (self.webBaseUrl, backdoorName)
self.webDirectory = localPath
self.webBackdoorFilePath = ntToPosixSlashes(normalizePath("%s/%s" % (localPath, backdoorName))).replace("//", "/").rstrip('/')
self.webBackdoorFilePath = ntToPosixSlashes(normalizePath("%s/%s" % (localPath, backdoorName))).replace("//", "/").rstrip('/')
testStr = "command execution test"
output = self.webBackdoorRunCmd("echo %s" % testStr)