Skip to content

Commit 42dda7d

Browse files
committed
_WD_GetTable: Fix closing bracket
1 parent 4a5a66e commit 42dda7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wd_helper.au3

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2907,7 +2907,7 @@ Func _WD_GetTable($sSession, $sBaseElement, $sRowsSelector = Default, $sColsSele
29072907

29082908
If $iErr = $_WD_ERROR_Success Then
29092909
; Extract target data from results and convert to array
2910-
Local $sStr = StringMid($sResult, 10, StringLen($sResult) - 11)
2910+
Local $sStr = StringMid($sResult, 10, StringLen($sResult) - 10)
29112911
$aTable = __Make2Array($sStr)
29122912
EndIf
29132913
EndIf

0 commit comments

Comments
 (0)