Commit 4699b7d8 authored by Jérome Perrin's avatar Jérome Perrin

fixup! py2/py3: stop using deprecated string functions, that are removed in python 3.

parent 28048ede
......@@ -14,7 +14,7 @@ for item in item_list:
# Hash key from item_value
item_split = item_value.split('/')
item_key = '/'.join(item_split[:split_depth] , '/' )
item_key = '/'.join(item_split[:split_depth])
if item_key not in sub_field_dict:
# Create property dict
......
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