add forgotten pygtk version

This commit is contained in:
Marcos Pinto 2008-06-22 21:42:15 +00:00
parent 38f10f2e1f
commit d6f783abf1
1 changed files with 4 additions and 2 deletions

View File

@ -208,8 +208,10 @@ class Core(
try:
url = "http://deluge-torrent.org/stats_get.php?processor=" + \
platform.machine() + "&python=" + platform.python_version() \
+ "&os=" + platform.system() + "&plugins=" + urllib.quote_plus(self.config["enabled_plugins"]) \
+ "&deluge=" + deluge.common.get_version()
+ "&deluge=" + deluge.common.get_version() \
+ "&pygtk=" + pygtk \
+ "&os=" + platform.system() \
+ "&plugins=" + urllib.quote_plus(self.config["enabled_plugins"])
urllib.urlopen(url)
except IOError:
print "Network error while trying to send info"