diff options
Diffstat (limited to 'src/mesa/glapi/gl_XML.py')
-rw-r--r-- | src/mesa/glapi/gl_XML.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/glapi/gl_XML.py b/src/mesa/glapi/gl_XML.py index 8b7b400d9a4..bb6ec2b54ad 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 = [] |