Commit 660de433 authored by Leo Le Bouter's avatar Leo Le Bouter

erp5_computer_metadata: Fix pylint warning

parent c921b250
......@@ -4,7 +4,7 @@ def traverse(d, depth):
res = ""
for name, value in d.iteritems():
for i in range(depth):
for _ in range(depth):
res += "\t"
res += name + "\n"
if len(value['childs']) > 0:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment