You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -266,7 +279,7 @@ export class AlternativeNotebookContentEditGenerator implements IAlternativeNote
266
279
// If the format is correct, then we should have emitted some edits.
267
280
// If we don't exit here we end up deleting all the cells in the notebook.
268
281
if(!editsEmitted&&allLines.length){
269
-
this.logger.logger.warn(`No edits generated for notebook ${notebookOrUri.uri.toString()}. This is likely due to an invalid format. Expected format: ${format}. Provided content as follows:\n\n${allLines.join(EOL)}`);
282
+
this.logger.logger.warn(`No edits generated for notebook ${notebookOrUri.uri.toString()}. This is likely due to an invalid format. Expected format: ${format}. Provided content as follows:\n\n${allLines.join('\n')}`);
270
283
return;
271
284
}
272
285
@@ -297,8 +310,9 @@ export class AlternativeNotebookContentEditGenerator implements IAlternativeNote
0 commit comments