Skip to content

Commit

Permalink
[processing] fixed #10575
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Jun 13, 2014
1 parent a5e5a0e commit 925b91f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions python/plugins/processing/algs/saga/SagaAlgorithm.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,8 @@ def help(self):
name = ''.join(c for c in name if c in validChars)
html = getHtmlFromRstFile(os.path.join(os.path.dirname(__file__), 'help',
name + '.rst'))
if html is None:
return True, None
imgpath = os.path.join(os.path.dirname(__file__),os.pardir, os.pardir, 'images', 'saga100x100.jpg')
html = ('<img src="%s"/>' % imgpath) + html
return True, html
Expand Down

0 comments on commit 925b91f

Please sign in to comment.