summaryrefslogtreecommitdiff
path: root/src/mesa/glapi/gl_XML.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/glapi/gl_XML.py')
-rw-r--r--src/mesa/glapi/gl_XML.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/glapi/gl_XML.py b/src/mesa/glapi/gl_XML.py
index 8b7b400d9a..bb6ec2b54a 100644
--- a/src/mesa/glapi/gl_XML.py
+++ b/src/mesa/glapi/gl_XML.py
@@ -171,7 +171,7 @@ class glParameter( glItem ):
temp = attrs.get('variable_param', None)
if temp:
- self.count_parameter_list = temp.replace( ' ', '' ).split( ',' )
+ self.count_parameter_list = temp.split( ' ' )
else:
self.count_parameter_list = []