2003-11-02 Tim Waugh <twaugh@redhat.com>

* src/plugins/WriteGedcom.py (GedcomWriter.__init__): Fixed
        default filename for export.


svn: r2311
This commit is contained in:
Tim Waugh 2003-11-02 12:43:53 +00:00
parent 61ce42d3f2
commit 4775ead038
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,8 @@
2003-11-02 Tim Waugh <twaugh@redhat.com>
* src/plugins/WriteGedcom.py (GedcomWriter.__init__): Fixed
default filename for export.
2003-11-01 Don Allingham <dallingham@users.sourceforge.net>
* src/StartupDialog.py: handle SuSE 9.0's broken handling of
gconf

View File

@ -415,7 +415,8 @@ class GedcomWriter:
target_obj.set_menu(myMenu)
self.target_menu = myMenu
pathname = "%s.ged" % os.path.dirname(db.getSavePath())
pathname = os.path.join (os.path.dirname(db.getSavePath()),
"export.ged")
filetgt = self.topDialog.get_widget('fileentry1')
filetgt.set_filename(pathname)