Skip to content

Commit 925b91f

Browse files
committedJun 13, 2014
[processing] fixed #10575
1 parent a5e5a0e commit 925b91f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed
 

‎python/plugins/processing/algs/saga/SagaAlgorithm.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -403,6 +403,8 @@ def help(self):
403403
name = ''.join(c for c in name if c in validChars)
404404
html = getHtmlFromRstFile(os.path.join(os.path.dirname(__file__), 'help',
405405
name + '.rst'))
406+
if html is None:
407+
return True, None
406408
imgpath = os.path.join(os.path.dirname(__file__),os.pardir, os.pardir, 'images', 'saga100x100.jpg')
407409
html = ('<img src="%s"/>' % imgpath) + html
408410
return True, html

0 commit comments

Comments
 (0)
Please sign in to comment.