Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-nntp/hellanzb/files: hellanzb-0.13-gettinggroup.patch
Date: Sat, 30 Aug 2008 20:16:07
Message-Id: E1KZWrb-0007Wo-Hj@stork.gentoo.org
1 aballier 08/08/30 20:16:03
2
3 Added: hellanzb-0.13-gettinggroup.patch
4 Log:
5 Different patch for bug #224945: use thereceived group from the server instead of the group asked, so that it does not fail if there are spaces in the group name or if the group changes.
6 (Portage version: 2.2_rc8/cvs/Linux 2.6.26.3 x86_64)
7
8 Revision Changes Path
9 1.1 net-nntp/hellanzb/files/hellanzb-0.13-gettinggroup.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-nntp/hellanzb/files/hellanzb-0.13-gettinggroup.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-nntp/hellanzb/files/hellanzb-0.13-gettinggroup.patch?rev=1.1&content-type=text/plain
13
14 Index: hellanzb-0.13-gettinggroup.patch
15 ===================================================================
16 diff -r 92936345c3f5 Hellanzb/NZBLeecher/Protocol.py
17 --- a/Hellanzb/NZBLeecher/Protocol.py Mon Aug 18 10:38:55 2008 +0200
18 +++ b/Hellanzb/NZBLeecher/Protocol.py Mon Aug 18 11:34:20 2008 +0200
19 @@ -655,7 +655,7 @@
20 reactor.callInThread(decode, segment)
21
22 def gotGroup(self, group):
23 - group = group[3]
24 + group = self.gettingGroup
25 self.activeGroups.append(group)
26 self.gettingGroup = None
27 debug(str(self) + ' got GROUP: ' + group)