Skip to content

Commit 1ce35cd

Browse files
committedJan 24, 2017
fix typo (followup 84d1a65)
1 parent a1a66a8 commit 1ce35cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎python/plugins/processing/algs/grass/GrassAlgorithm.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ def help(self):
104104
if os.path.exists(helpPath):
105105
return False, QUrl.fromLocalFile(os.path.join(helpPath, '{}.html'.format(self.grassName))).toString()
106106
else:
107-
return False, helpPath + '{}.html'.format(self.grass7Name)
107+
return False, '{}{}.html'.format(helpPath, self.grassName)
108108

109109
def getParameterDescriptions(self):
110110
descs = {}

0 commit comments

Comments
 (0)
Please sign in to comment.