Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8cd40f8

Browse files
committed
Patch for an Issue #971
1 parent a0d95a8 commit 8cd40f8

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

lib/core/agent.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
from lib.core.common import Backend
1111
from lib.core.common import extractRegexResult
1212
from lib.core.common import getSQLSnippet
13+
from lib.core.common import getUnicode
1314
from lib.core.common import isDBMSVersionAtLeast
1415
from lib.core.common import isNumber
1516
from lib.core.common import isTechniqueAvailable
@@ -87,7 +88,7 @@ def payload(self, place=None, parameter=None, value=None, newValue=None, where=N
8788

8889
paramString = conf.parameters[place]
8990
paramDict = conf.paramDict[place]
90-
origValue = paramDict[parameter]
91+
origValue = getUnicode(paramDict[parameter])
9192

9293
if place == PLACE.URI:
9394
paramString = origValue

0 commit comments

Comments
 (0)