From d6f783abf1c39f1c3c08e26bd3a385957833ed78 Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Sun, 22 Jun 2008 21:42:15 +0000 Subject: [PATCH] add forgotten pygtk version --- deluge/core/core.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/deluge/core/core.py b/deluge/core/core.py index f949fbce4..fa16c6783 100644 --- a/deluge/core/core.py +++ b/deluge/core/core.py @@ -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"