mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-21 03:54:50 +00:00
Fixed typo in seeking.
This commit is contained in:
parent
06b19538fd
commit
227e464b63
1 changed files with 1 additions and 1 deletions
|
@ -347,7 +347,7 @@ class Config(object):
|
|||
# We will only write a new config file if there is a difference
|
||||
try:
|
||||
data = open(filename, "rb")
|
||||
data.seek(2)
|
||||
data.seek(4)
|
||||
loaded_data = json.load(data)
|
||||
data.close()
|
||||
if self.__config == loaded_data:
|
||||
|
|
Loading…
Add table
Reference in a new issue