Skip to content

Commit

Permalink
[sextante] fixed bug in R installation check in windows
Browse files Browse the repository at this point in the history
  • Loading branch information
volaya committed Jul 11, 2013
1 parent 7ee80c7 commit f9c1046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/plugins/sextante/r/RAlgorithm.py
Expand Up @@ -400,7 +400,7 @@ def checkBeforeOpeningParametersDialog(self):
execDir = "x64"
else:
execDir = "i386"
command = [RUtils.RFolder() + os.sep + "bin" + os.sep + execDir + os.sep + "R.exe --version"]
command = [RUtils.RFolder() + os.sep + "bin" + os.sep + execDir + os.sep + "R.exe", "--version"]
else:
command = ["R --version"]
proc = subprocess.Popen(command, shell=True, stdout=subprocess.PIPE, stdin=subprocess.PIPE,stderr=subprocess.STDOUT, universal_newlines=True).stdout
Expand Down

0 comments on commit f9c1046

Please sign in to comment.