Fix listview.
This commit is contained in:
parent
589df97add
commit
26350c5099
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue