On Mon, Aug 18, 2008 at 09:06:07AM +0000, Debian Bug Tracking System wrote:
>
> Thank you for filing a new Bug report with Debian.
>
Actually I've found a better fix, the problem is that the correct group
isn't recorded. It should record as valid group the group it asked, not
the group sent back from the server (like what is done in case of failure).
I tested, it fixes the issue for me. Furthermore it fixes the other failure
from the same upstream bugreport (with the server being case insensitive).
(I don't know if both patches should be applied, since this one is sufficient).
regards,
Benoit
diff -r 92936345c3f5 Hellanzb/NZBLeecher/Protocol.py
--- a/Hellanzb/NZBLeecher/Protocol.py Mon Aug 18 10:38:55 2008 +0200
+++ b/Hellanzb/NZBLeecher/Protocol.py Mon Aug 18 11:34:20 2008 +0200
@@ -655,7 +655,7 @@
reactor.callInThread(decode, segment)
def gotGroup(self, group):
- group = group[3]
+ group = self.gettingGroup
self.activeGroups.append(group)
self.gettingGroup = None
debug(str(self) + ' got GROUP: ' + group)
--
:wq
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]