From 227e464b63654186ca9dd010628fe2408d131e5e Mon Sep 17 00:00:00 2001 From: John Garland Date: Wed, 10 Jun 2009 14:28:37 +0000 Subject: [PATCH] Fixed typo in seeking. --- deluge/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deluge/config.py b/deluge/config.py index fd93983ad..389b73f0a 100644 --- a/deluge/config.py +++ b/deluge/config.py @@ -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: