Skip to content

Commit b4cbef9

Browse files
Remove awareness message for non-Python apps (#3147)
1 parent ed8f04c commit b4cbef9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Azure.Functions.Cli/Actions/LocalActions/CreateFunctionAction.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ public async override Task RunAsync()
216216
}
217217
}
218218
ColoredConsole.WriteLine($"The function \"{FunctionName}\" was created successfully from the \"{TemplateName}\" template.");
219-
if (!isNewPythonProgrammingModel())
219+
if (string.Equals(Language, Languages.Python, StringComparison.CurrentCultureIgnoreCase) && !isNewPythonProgrammingModel())
220220
{
221221
PythonHelpers.PrintPySteinAwarenessMessage();
222222
}

0 commit comments

Comments
 (0)