Navigation Menu

Skip to content

Commit

Permalink
fix typo (followup 84d1a65)
Browse files Browse the repository at this point in the history
  • Loading branch information
jef-n committed Jan 24, 2017
1 parent a1a66a8 commit 1ce35cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/processing/algs/grass/GrassAlgorithm.py
Expand Up @@ -104,7 +104,7 @@ def help(self):
if os.path.exists(helpPath):
return False, QUrl.fromLocalFile(os.path.join(helpPath, '{}.html'.format(self.grassName))).toString()
else:
return False, helpPath + '{}.html'.format(self.grass7Name)
return False, '{}{}.html'.format(helpPath, self.grassName)

def getParameterDescriptions(self):
descs = {}
Expand Down

0 comments on commit 1ce35cd

Please sign in to comment.