Skip to content

Commit

Permalink
Update missing R message to mention R 4.x instead of 3.x
Browse files Browse the repository at this point in the history
  • Loading branch information
alchemistmatt committed May 3, 2021
1 parent f5ee2f3 commit b66e4c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Inferno/Forms/frmDAnTE.Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public partial class frmDAnTE : Form
{
#region Other Variables

public const string PROGRAM_DATE = "November 17, 2020";
public const string PROGRAM_DATE = "May 3, 2021";

public const int SUGGESTED_DATASETS_TO_SELECT = 30;
public const int MAX_DATASETS_TO_SELECT = 60;
Expand Down
2 changes: 1 addition & 1 deletion Tools/clsRconnect.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public bool initR()
}
catch (NullReferenceException)
{
var errMsg = @"Unable to connect to R. Confirm that R 3.x is installed by examining directory C:\Program Files\R or C:\Program Files (x86)\R";
var errMsg = @"Unable to connect to R. Confirm that R 4.x is installed by examining directory C:\Program Files\R or C:\Program Files (x86)\R";
Console.WriteLine(errMsg);
Message = errMsg;
return false;
Expand Down

0 comments on commit b66e4c0

Please sign in to comment.