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

Skip to content

Commit 74ee0ce

Browse files
committed
Fix for an Issue #148
1 parent 36b55cf commit 74ee0ce

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

plugins/generic/entries.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
from lib.core.bigarray import BigArray
1010
from lib.core.common import Backend
1111
from lib.core.common import clearConsoleLine
12+
from lib.core.common import decodeIntToUnicode
1213
from lib.core.common import getLimitRange
1314
from lib.core.common import getUnicode
1415
from lib.core.common import isInferenceAvailable
@@ -129,7 +130,7 @@ def __pivotDumpTable(self, table, colList, count=None, blind=True):
129130
for char in ('\'', '?'):
130131
if pivotValue and char in pivotValue and pivotValue[0] != char:
131132
pivotValue = pivotValue.split(char)[0]
132-
pivotValue = pivotValue[:-1] + chr(ord(pivotValue[-1]) + 1)
133+
pivotValue = pivotValue[:-1] + decodeIntToUnicode(ord(pivotValue[-1]) + 1)
133134
break
134135
if column == colList[0]:
135136
query = dumpNode.query % (column, table, column, pivotValue)

0 commit comments

Comments
 (0)