improve changeset cache key

This commit is contained in:
Laura Klünder 2017-07-06 00:27:21 +02:00
parent ceafc2e1cb
commit 9030351461
2 changed files with 2 additions and 2 deletions

View file

@ -423,7 +423,7 @@ class ChangeSet(models.Model):
@property
def cache_key_by_changes(self):
return ':'.join((str(self.pk), MapUpdate.cache_key(), self.last_change_cache_key))
return ':'.join(('editor:changeset', str(self.pk), MapUpdate.cache_key(), self.last_change_cache_key))
def get_absolute_url(self):
if self.pk is None: