Skip to content
Snippets Groups Projects
Commit 6b7e4d7246a8 authored by Elouan Martinet's avatar Elouan Martinet
Browse files

[storages] Fix comments

parent 947f7f40bdba
No related branches found
No related tags found
1 merge request!29[storages] Do not add a temporary suffix to S3 keys by default
...@@ -108,7 +108,7 @@ ...@@ -108,7 +108,7 @@
self.info('Temporary uploaded %s.%s (%s/%s) to S3', self.info('Temporary uploaded %s.%s (%s/%s) to S3',
entity.eid, attr, self.bucket, suffixed_key) entity.eid, attr, self.bucket, suffixed_key)
if oldkey is not None and oldkey != key: if oldkey is not None and oldkey != key:
# remove unneeded old file # remove unneeded old key
self.delay_deletion(entity, attr, oldkey) self.delay_deletion(entity, attr, oldkey)
return binary return binary
...@@ -120,7 +120,7 @@ ...@@ -120,7 +120,7 @@
return {} return {}
def entity_updated(self, entity, attr): def entity_updated(self, entity, attr):
"""an entity using this storage for attr has been updatded""" """an entity using this storage for attr has been updated"""
return self.entity_added(entity, attr) return self.entity_added(entity, attr)
def entity_deleted(self, entity, attr): def entity_deleted(self, entity, attr):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment