Fixed typo in seeking.

This commit is contained in:
John Garland 2009-06-10 14:28:37 +00:00
parent 06b19538fd
commit 227e464b63
1 changed files with 1 additions and 1 deletions

View File

@ -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: