File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ const NO_REASON: &str = "No reason";
3434/// A CloudFormation CLI that won't make you cry.
3535///
3636/// All commands will look for AWS configuration in the usual places. See AWS CLI documentation for
37- /// more information: https://docs.aws.amazon.com/cli/latest/topic/config-vars.html
37+ /// more information: < https://docs.aws.amazon.com/cli/latest/topic/config-vars.html>
3838///
3939/// Use `cloudformatious <command> --help` to get more information about individual commands.
4040#[ derive( Clap , Debug ) ]
@@ -596,8 +596,8 @@ impl Default for Sizing {
596596async fn print_events ( sizing : & Sizing , mut events : impl Stream < Item = StackEvent > + Unpin ) {
597597 while let Some ( event) = events. next ( ) . await {
598598 eprintln ! (
599- "{} {:resource_status_size$} {:logical_resource_id_size$} {:resource_type_size$} {}" ,
600- format! ( "{:?}" , event. timestamp( ) ) ,
599+ "{:? } {:resource_status_size$} {:logical_resource_id_size$} {:resource_type_size$} {}" ,
600+ event. timestamp( ) ,
601601 colorize_status( & event) ,
602602 event. logical_resource_id( ) ,
603603 event. resource_type( ) ,
You can’t perform that action at this time.
0 commit comments