Fixed syntax error.

This commit is contained in:
Bill Dengler 2015-05-09 23:13:47 -04:00
parent edae9fb664
commit f8f9a4ecf2

View File

@ -395,7 +395,7 @@ class Session(object):
"Import a shelved database."
shelfname=paths.config_path(str(self.session_id)+".db")
if self.settings["general"]["persist_size"] == 0:
if os.path.exists(shelfname)
if os.path.exists(shelfname):
os.remove(shelfname)
return
try: