diff options
Diffstat (limited to 'libglusterfs')
| -rwxr-xr-x | libglusterfs/src/generator.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/libglusterfs/src/generator.py b/libglusterfs/src/generator.py index 29e02782638..09f9727f760 100755 --- a/libglusterfs/src/generator.py +++ b/libglusterfs/src/generator.py @@ -718,7 +718,7 @@ def get_subs (names, types, cbktypes=None):  	sdict = {}  	sdict["@SHORT_ARGS@"] = string.join(names,", ")  	# Convert two separate tuples to one of (name, type) sub-tuples. -	as_tuples = zip(types,names) +	as_tuples = list(zip(types,names))  	# Convert each sub-tuple into a "type name" string.  	as_strings = map(string.join,as_tuples)  	# Join all of those into one big string.  | 
