From f74b88a7118eb613a8d5eda612c7393ba6009802 Mon Sep 17 00:00:00 2001 From: Marius Date: Fri, 21 Jun 2019 16:19:27 +0200 Subject: [PATCH] station_book: add name --- station_book.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/station_book.py b/station_book.py index 34096a1..3a1628c 100644 --- a/station_book.py +++ b/station_book.py @@ -6,7 +6,7 @@ class StationBook(Snuffling): self.set_name("Station Book") self.attributes = [ 'network', 'station', 'location', 'lat', 'lon', 'elevation', - 'depth'] + 'depth', 'name'] self.add_parameter( Choice('Sort by', 'sort_by', 'network', self.attributes))