Skip to content

Commit

Permalink
Remove awareness message for non-Python apps (#3147)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelpeng36 authored Sep 9, 2022
1 parent ed8f04c commit b4cbef9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ public async override Task RunAsync()
}
}
ColoredConsole.WriteLine($"The function \"{FunctionName}\" was created successfully from the \"{TemplateName}\" template.");
if (!isNewPythonProgrammingModel())
if (string.Equals(Language, Languages.Python, StringComparison.CurrentCultureIgnoreCase) && !isNewPythonProgrammingModel())
{
PythonHelpers.PrintPySteinAwarenessMessage();
}
Expand Down

0 comments on commit b4cbef9

Please sign in to comment.