Skip to content

Commit ae26969

Browse files
committed
Fix variable in sprintf
Signed-off-by: Riddhesh Sanghvi <[email protected]>
1 parent 7953962 commit ae26969

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Shell_Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ private function check_shell_available( $shell_container, $site ) {
7979
if ( ! in_array( $shell_container, $services, true ) ) {
8080
EE::debug( 'Site type: ' . $site->site_type );
8181
EE::debug( 'Site command: ' . $site->app_sub_type );
82-
EE::error( sprintf( '%s site does not have support to launch %s shell.', $shell_container, $site->site_url ) );
82+
EE::error( sprintf( '%s site does not have support to launch %s shell.', $site->site_url, $shell_container ) );
8383
}
8484
}
8585
}

0 commit comments

Comments
 (0)