[PATCH] Fix handling of deleted bugzilla attachments
Gökçen Eraslan
gokcen.eraslan at gmail.com
Tue Apr 17 02:04:05 PDT 2012
As in https://bugs.kde.org/show_bug.cgi?ctype=xml&id=53343 <data>
tag may not have a value if the attachment is deleted.
---
bin/get-bugzilla-attachments-by-mimetype | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/bin/get-bugzilla-attachments-by-mimetype b/bin/get-bugzilla-attachments-by-mimetype
index b9488b9..7c77957 100755
--- a/bin/get-bugzilla-attachments-by-mimetype
+++ b/bin/get-bugzilla-attachments-by-mimetype
@@ -77,6 +77,11 @@ def get_from_bug_url_via_xml(url, mimetype, prefix, suffix):
print 'skipping'
break
elif node.nodeName == 'data':
+ # check if attachment is deleted (i.e. https://bugs.kde.org/show_bug.cgi?id=53343&ctype=xml)
+ if not node.firstChild:
+ print 'deleted attachment, skipping'
+ continue
+
download = suffix + '/' +prefix + id + '-' + str(attachmentid) + '.' + suffix
print 'downloading as', download
f = open(download, 'w')
--
1.7.10
--------------020005070807070504010405--
More information about the LibreOffice
mailing list