Skip to content

Commit 4a33247

Browse files
Add building acronyms to the catalog titles (#10)
1 parent 2e54970 commit 4a33247

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

db.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class Building(Base):
5151

5252
def human_name(self):
5353
if self.short_name is not None and self.short_name != "":
54-
return self.short_name
54+
return self.short_name + " (" + self.acronym + ")"
5555
else:
5656
return self.acronym
5757

0 commit comments

Comments
 (0)