Add space around folder name separator when flattening folder path

This commit is contained in:
Alexey Bezhan
2019-03-06 14:56:56 +00:00
committed by Pea Tyczynska
parent 1fb7a2515f
commit 80bfd8e347
2 changed files with 6 additions and 6 deletions

View File

@@ -396,7 +396,7 @@ class Service():
"users_with_permission": folder["users_with_permission"]
}
while folder_attrs["parent_id"] is not None:
folder_attrs["name"] = parent["name"] + "/" + folder_attrs["name"]
folder_attrs["name"] = parent["name"] + " / " + folder_attrs["name"]
if parent["parent_id"] is None:
folder_attrs["parent_id"] = None
else: