diff --git a/borgweb/borg/models/location.py b/borgweb/borg/models/location.py index 69f4ed4..9ca5ace 100644 --- a/borgweb/borg/models/location.py +++ b/borgweb/borg/models/location.py @@ -71,5 +71,4 @@ class Location(models.Model): type_description = self.type_description() existence = "exists" if self.exists() else "does not exist" - if self.exists(): - return f"{type_description} {self.path} {existence}" + return f"{type_description} {self.path} {existence}"