mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-09 18:08:39 +00:00
Fix listview.
This commit is contained in:
parent
589df97add
commit
26350c5099
1 changed files with 1 additions and 1 deletions
|
@ -189,7 +189,7 @@ class ListView:
|
||||||
state_file = open(os.path.join(config_location, filename), "rb")
|
state_file = open(os.path.join(config_location, filename), "rb")
|
||||||
state = cPickle.load(state_file)
|
state = cPickle.load(state_file)
|
||||||
state_file.close()
|
state_file.close()
|
||||||
except IOError:
|
except IOError, e:
|
||||||
log.warning("Unable to load state file: %s", 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
|
# Keep the state in self.state so we can access it as we add new columns
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue