Skip to content

Commit

Permalink
Merge pull request #198 from zooba/issue-190
Browse files Browse the repository at this point in the history
#190 Install from/Generate Requirements.txt commands should be disabl…
  • Loading branch information
zooba committed May 18, 2015
2 parents b78acaa + 25001d0 commit 2fda616
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -487,7 +487,7 @@ public PythonProjectNode(IServiceProvider serviceProvider)
}
} else {
var fact = interpreters.ActiveInterpreter;
if (!RemoveFirst(remaining, n => n._isGlobalDefault && n._factory == fact)) {
if (fact.IsRunnable() && !RemoveFirst(remaining, n => n._isGlobalDefault && n._factory == fact)) {
node.AddChild(new InterpretersNode(this, null, fact, true, false, true));
}
}
Expand Down

0 comments on commit 2fda616

Please sign in to comment.