Merge "Fix storage.hbase.util.prepare_key() for 32-bits system"
This commit is contained in:
commit
7ce280323c
@ -329,7 +329,7 @@ def prepare_key(*args):
|
||||
"""
|
||||
key_quote = []
|
||||
for key in args:
|
||||
if isinstance(key, int):
|
||||
if isinstance(key, six.integer_types):
|
||||
key = str(key)
|
||||
key_quote.append(quote(key))
|
||||
return ":".join(key_quote)
|
||||
|
Loading…
x
Reference in New Issue
Block a user