From bf67b3e1148526d23372fa4c0c68af6547e8941f Mon Sep 17 00:00:00 2001 From: Paul Franklin Date: Mon, 4 Mar 2013 00:42:39 +0000 Subject: [PATCH] skip error msg if no file exists svn: r21545 --- gramps/gen/recentfiles.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gramps/gen/recentfiles.py b/gramps/gen/recentfiles.py index 4be2a8754..d09549873 100644 --- a/gramps/gen/recentfiles.py +++ b/gramps/gen/recentfiles.py @@ -218,8 +218,11 @@ class RecentParser(object): def __init__(self): self.recent_files = [] -#Python3's expat wants bytes, Python2's wants a string. + if not os.path.exists(os.path.expanduser(GRAMPS_FILENAME)): + return # it's the first time gramps has ever been run + xml_file = None + # Python3's expat wants bytes, Python2's wants a string. try: if sys.version_info[0] < 3: xml_file = open(os.path.expanduser(GRAMPS_FILENAME), "r")