mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-09 09:58:39 +00:00
Fix issue restoring torrent state
This commit is contained in:
parent
205444f670
commit
b9338a639e
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ class TorrentState:
|
||||||
name=None
|
name=None
|
||||||
):
|
):
|
||||||
# Build the class atrribute list from args
|
# Build the class atrribute list from args
|
||||||
for key, value in locals().iteritems():
|
for key, value in locals().items():
|
||||||
if key == "self":
|
if key == "self":
|
||||||
continue
|
continue
|
||||||
setattr(self, key, value)
|
setattr(self, key, value)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue