Fix BaseCollection.move

The update method doesn't exist.
This commit is contained in:
Unrud 2016-09-15 11:18:55 +02:00 committed by GitHub
parent e95d187cbc
commit def34b1454

View File

@ -254,9 +254,6 @@ class BaseCollection:
"""
if item.collection.path == to_collection.path and item.href == to_href:
return
if to_collection.has(to_href):
to_collection.update(to_href, item.item)
else:
to_collection.upload(to_href, item.item)
item.collection.delete(item.href)