Code: Select all
old: MD5 (deluge-0.5.9.3.tar.gz) = 360b5f0781ac5ae44cb39fd65ee66eb2
old: SIZE (deluge-0.5.9.3.tar.gz) = 2215191
new: MD5 (deluge-0.5.9.3.tar.gz) = 57ee1e0353cdc90884bfd3d240e7c425
new: SIZE (deluge-0.5.9.3.tar.gz) = 2215212
Code: Select all
--- deluge-torrent-0.5.9.3.old/src/common.py 2008-06-23 14:37:50.000000000 -0500
+++ deluge-torrent-0.5.9.3.new/src/common.py 2008-06-22 00:06:16.000000000 -0500
@@ -213,7 +213,7 @@
def send_info(plugins=None):
import threading
class Send_Info_Thread(threading.Thread):
- def __init__(self, plugins):
+ def __init__(self):
threading.Thread.__init__(self)
def run(self):
import urllib
@@ -223,6 +223,7 @@
import common
pygtk = '%i.%i.%i' %(gtk.pygtk_version[0],gtk.pygtk_version[1],gtk.pygtk_version[2])
+
try:
url = "http://deluge-torrent.org/stats_get.php?processor=" + \
platform.machine() + "&python=" + platform.python_version() \
@@ -236,7 +237,7 @@
f = open(os.path.join(CONFIG_DIR, 'infosent'), 'w')
f.write("")
f.close
- Send_Info_Thread(plugins).start()
+ Send_Info_Thread().start()
# Encryption States
class EncState:
http://dev.deluge-torrent.org/changeset/3273
So.. The re-rolled tarball has missed this fix? Or, the re-rolled tarball is the reason to backout this fix?