From 907e5b0ed71cc0f8e7f6d27e41a6e482b08d61b9 Mon Sep 17 00:00:00 2001 From: David Hampton Date: Sat, 15 Dec 2001 23:14:01 +0000 Subject: [PATCH] Always clear database when loading a new file. svn: r619 --- gramps/src/gramps_main.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gramps/src/gramps_main.py b/gramps/src/gramps_main.py index 23c80b8be..155daa2d3 100755 --- a/gramps/src/gramps_main.py +++ b/gramps/src/gramps_main.py @@ -496,8 +496,7 @@ def on_ok_button1_clicked(obj): if filename == "" or filename == None: return - if os.path.isdir(filename): - new_database_response(0) + new_database_response(0) if getoldrev.get_active(): vc = VersionControl.RcsVersionControl(filename)