Keep python 3.5 compat for now
This commit is contained in:
parent
f3ecc8ce28
commit
706967d982
1 changed files with 1 additions and 1 deletions
|
@ -448,7 +448,7 @@ class PermissionsMixin:
|
|||
|
||||
def get_anonymous_edit_url(self):
|
||||
anonymous_url = self.object.get_anonymous_edit_url()
|
||||
return f'{settings.SITE_URL}{anonymous_url}'
|
||||
return settings.SITE_URL + anonymous_url
|
||||
|
||||
|
||||
class MapView(MapDetailMixin, PermissionsMixin, DetailView):
|
||||
|
|
Loading…
Reference in a new issue