skip error msg if no file exists

svn: r21545
This commit is contained in:
Paul Franklin 2013-03-04 00:42:39 +00:00
parent d01f7bf7df
commit bf67b3e114

View File

@ -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")