@@ -245,7 +245,7 @@ fn create_dataset(
245245 let api_key = match & profile_config. api_key {
246246 Some ( key) if key != "PLACEHOLDER" => key. clone ( ) ,
247247 _ => {
248- eprintln ! ( "error: not authenticated. Run 'hotdata auth login ' to log in." ) ;
248+ eprintln ! ( "error: not authenticated. Run 'hotdata auth' to log in." ) ;
249249 std:: process:: exit ( 1 ) ;
250250 }
251251 } ;
@@ -315,7 +315,7 @@ pub fn create_from_upload(
315315 let api_key = match & profile_config. api_key {
316316 Some ( key) if key != "PLACEHOLDER" => key. clone ( ) ,
317317 _ => {
318- eprintln ! ( "error: not authenticated. Run 'hotdata auth login ' to log in." ) ;
318+ eprintln ! ( "error: not authenticated. Run 'hotdata auth' to log in." ) ;
319319 std:: process:: exit ( 1 ) ;
320320 }
321321 } ;
@@ -432,7 +432,7 @@ pub fn list(workspace_id: &str, limit: Option<u32>, offset: Option<u32>, format:
432432 let api_key = match & profile_config. api_key {
433433 Some ( key) if key != "PLACEHOLDER" => key. clone ( ) ,
434434 _ => {
435- eprintln ! ( "error: not authenticated. Run 'hotdata auth login ' to log in." ) ;
435+ eprintln ! ( "error: not authenticated. Run 'hotdata auth' to log in." ) ;
436436 std:: process:: exit ( 1 ) ;
437437 }
438438 } ;
@@ -509,7 +509,7 @@ pub fn get(dataset_id: &str, workspace_id: &str, format: &str) {
509509 let api_key = match & profile_config. api_key {
510510 Some ( key) if key != "PLACEHOLDER" => key. clone ( ) ,
511511 _ => {
512- eprintln ! ( "error: not authenticated. Run 'hotdata auth login ' to log in." ) ;
512+ eprintln ! ( "error: not authenticated. Run 'hotdata auth' to log in." ) ;
513513 std:: process:: exit ( 1 ) ;
514514 }
515515 } ;
0 commit comments