Author: johnnyg
Revision: 5373
Log:
Fixed typo in seeking.
Diff:
Modified: trunk/deluge/config.py
===================================================================
--- trunk/deluge/config.py 2009-06-10 13:27:55 UTC (rev 5372)
+++ trunk/deluge/config.py 2009-06-10 14:28:37 UTC (rev 5373)
@@ -347,7 +347,7 @@
# 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:
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"deluge-commit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/deluge-commit?hl=en
-~----------~----~----~----~------~----~------~--~---