From d901aaa2108332be271de8a03488c9ebca99fc82 Mon Sep 17 00:00:00 2001 From: George Lacey Date: Tue, 11 May 2021 16:30:33 +0100 Subject: [PATCH] Always print short description --- borgweb/borg/models/location.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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}"