Changeset 3273
- Timestamp:
- 06/23/08 19:37:15 (2 months ago)
- Files:
-
- trunk/setup.py (modified) (1 diff)
- trunk/src/common.py (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/setup.py
r3192 r3273 29 29 NAME = "deluge" 30 30 FULLNAME = "Deluge BitTorrent Client" 31 VERSION = "0.5.9. 2"31 VERSION = "0.5.9.3" 32 32 AUTHOR = "Zach Tibbitts, Alon Zakai, Marcos Pinto, Andrew Resch, Alex Dedul" 33 33 EMAIL = "zach@collegegeek.org, kripkensteiner@gmail.com, marcospinto@dipconsultants.com, alonzakai@gmail.com, rotmer@gmail.com" trunk/src/common.py
r3192 r3273 33 33 34 34 PROGRAM_NAME = "Deluge" 35 PROGRAM_VERSION = "0.5.9. 2"35 PROGRAM_VERSION = "0.5.9.3" 36 36 37 37 CLIENT_CODE = "DE" … … 214 214 import threading 215 215 class Send_Info_Thread(threading.Thread): 216 def __init__(self ):216 def __init__(self, plugins): 217 217 threading.Thread.__init__(self) 218 218 def run(self): … … 224 224 225 225 pygtk = '%i.%i.%i' %(gtk.pygtk_version[0],gtk.pygtk_version[1],gtk.pygtk_version[2]) 226 227 226 try: 228 227 url = "http://deluge-torrent.org/stats_get.php?processor=" + \ … … 238 237 f.write("") 239 238 f.close 240 Send_Info_Thread( ).start()239 Send_Info_Thread(plugins).start() 241 240 242 241 # Encryption States
