add forgotten pygtk version
This commit is contained in:
parent
38f10f2e1f
commit
d6f783abf1
|
@ -208,8 +208,10 @@ class Core(
|
||||||
try:
|
try:
|
||||||
url = "http://deluge-torrent.org/stats_get.php?processor=" + \
|
url = "http://deluge-torrent.org/stats_get.php?processor=" + \
|
||||||
platform.machine() + "&python=" + platform.python_version() \
|
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)
|
urllib.urlopen(url)
|
||||||
except IOError:
|
except IOError:
|
||||||
print "Network error while trying to send info"
|
print "Network error while trying to send info"
|
||||||
|
|
Loading…
Reference in New Issue