* src/DataViews/_PlaceView.py: add attempt to map to google maps,

check for valid list


svn: r6985
This commit is contained in:
Don Allingham 2006-07-04 04:59:15 +00:00
parent 1c6f096370
commit f6e757a1b6
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,6 @@
2006-07-03 Don Allingham <don@gramps-project.org>
* src/DataViews/_PlaceView.py: add attempt to map to google maps
* src/DataViews/_PlaceView.py: add attempt to map to google maps,
check for valid list
* src/glade/gramps.glade: fix date status button.
2006-07-02 Don Allingham <don@gramps-project.org>

View File

@ -103,8 +103,11 @@ class PlaceView(PageView.ListView):
def google(self, obj):
import GrampsDisplay
place_handle = self.selected_handles()[0]
try:
place_handle = self.selected_handles()[0]
except IndexError:
return
place = self.dbstate.db.get_place_from_handle(place_handle)
descr = place.get_title()
longitude = place.get_longitude()