From 4c64e88d5ba4c36cbdbc903376492f0f43401e4e Mon Sep 17 00:00:00 2001 From: andreapasqua Date: Fri, 17 Jun 2016 22:41:05 -0700 Subject: [SPARK-16035][PYSPARK] Fix SparseVector parser assertion for end parenthesis ## What changes were proposed in this pull request? The check on the end parenthesis of the expression to parse was using the wrong variable. I corrected that. ## How was this patch tested? Manual test Author: andreapasqua Closes #13750 from andreapasqua/sparse-vector-parser-assertion-fix. --- python/pyspark/mllib/linalg/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python') diff --git a/python/pyspark/mllib/linalg/__init__.py b/python/pyspark/mllib/linalg/__init__.py index 70509a6d9b..3a345b2b56 100644 --- a/python/pyspark/mllib/linalg/__init__.py +++ b/python/pyspark/mllib/linalg/__init__.py @@ -569,7 +569,7 @@ class SparseVector(Vector): if start == -1: raise ValueError("Tuple should start with '('") end = s.find(')') - if start == -1: + if end == -1: raise ValueError("Tuple should end with ')'") s = s[start + 1: end].strip() -- cgit v1.2.3