Skip to content

Commit

Permalink
Update OpenShiftFacet.java
Browse files Browse the repository at this point in the history
This fixes #1 : NPE on user during setup
  • Loading branch information
GrmpCerber committed Feb 7, 2014
1 parent 4bc9c8c commit b3602ea
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ private boolean internalInstall() throws Exception, InvalidCredentialsOpenShiftE
IUser user = openshiftService.getUser();

if (user == null){
ShellMessages.info(out, "Error. Could not find OpenShift User: " + user.getRhlogin());
ShellMessages.info(out, "Error. Could not find OpenShift User: " + rhLogin);
return false;
}

Expand Down

0 comments on commit b3602ea

Please sign in to comment.