summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-nntp/hellanzb/files/hellanzb-0.13-strip-extra-space-in-group.patch')
-rw-r--r--net-nntp/hellanzb/files/hellanzb-0.13-strip-extra-space-in-group.patch11
1 files changed, 11 insertions, 0 deletions
diff --git a/net-nntp/hellanzb/files/hellanzb-0.13-strip-extra-space-in-group.patch b/net-nntp/hellanzb/files/hellanzb-0.13-strip-extra-space-in-group.patch
new file mode 100644
index 000000000000..aa13894189c3
--- /dev/null
+++ b/net-nntp/hellanzb/files/hellanzb-0.13-strip-extra-space-in-group.patch
@@ -0,0 +1,11 @@
+--- hellanzb-0.13-orig/Hellanzb/NZBLeecher/NZBParser.py 2008-06-18 15:41:16.000000000 +0200
++++ hellanzb-0.13/Hellanzb/NZBLeecher/NZBParser.py 2008-06-18 15:42:39.000000000 +0200
+@@ -149,7 +149,7 @@
+ self.fileNeedsDownload = None
+
+ elif name == 'group':
+- newsgroup = self.parseUnicode(''.join(self.chars))
++ newsgroup = self.parseUnicode(''.join(self.chars)).strip()
+ self.file.groups.append(newsgroup)
+
+ self.chars = None