Merge "Fix bug:xrange() issue with py3.x"
This commit is contained in:
commit
c6d01ea39c
@ -74,7 +74,7 @@ def run(args):
|
||||
args.num_replicas,
|
||||
args.min_part_hours])
|
||||
|
||||
for i in xrange(len(hosts)):
|
||||
for i in range(len(hosts)):
|
||||
run_cmd(['swift-ring-builder',
|
||||
args.ring_file,
|
||||
'add',
|
||||
|
Loading…
Reference in New Issue
Block a user