Fix listview.

This commit is contained in:
Andrew Resch 2007-12-08 21:23:08 +00:00
parent 589df97add
commit 26350c5099
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ class ListView:
state_file = open(os.path.join(config_location, filename), "rb")
state = cPickle.load(state_file)
state_file.close()
except IOError:
except IOError, e:
log.warning("Unable to load state file: %s", e)
# Keep the state in self.state so we can access it as we add new columns