File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1429,9 +1429,9 @@ function defineDefaultCommands(repl) {
1429
1429
action : function ( file ) {
1430
1430
try {
1431
1431
fs . writeFileSync ( file , this . lines . join ( '\n' ) + '\n' ) ;
1432
- this . outputStream . write ( 'Session saved to:' + file + '\n' ) ;
1432
+ this . outputStream . write ( 'Session saved to: ' + file + '\n' ) ;
1433
1433
} catch ( e ) {
1434
- this . outputStream . write ( 'Failed to save:' + file + '\n' ) ;
1434
+ this . outputStream . write ( 'Failed to save: ' + file + '\n' ) ;
1435
1435
}
1436
1436
this . displayPrompt ( ) ;
1437
1437
}
@@ -1453,11 +1453,11 @@ function defineDefaultCommands(repl) {
1453
1453
_turnOffEditorMode ( this ) ;
1454
1454
this . write ( '\n' ) ;
1455
1455
} else {
1456
- this . outputStream . write ( 'Failed to load:' + file +
1456
+ this . outputStream . write ( 'Failed to load: ' + file +
1457
1457
' is not a valid file\n' ) ;
1458
1458
}
1459
1459
} catch ( e ) {
1460
- this . outputStream . write ( 'Failed to load:' + file + '\n' ) ;
1460
+ this . outputStream . write ( 'Failed to load: ' + file + '\n' ) ;
1461
1461
}
1462
1462
this . displayPrompt ( ) ;
1463
1463
}
You can’t perform that action at this time.
0 commit comments