We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79cbf3e commit 91f69ffCopy full SHA for 91f69ff
1 file changed
src/mako/lib/mbuild.mako
@@ -312,8 +312,11 @@ ${'.' + action_name | indent_by(13)}(${action_args});
312
313
match result {
314
Result::HttpError(err) => println!("HTTPERROR: {:?}", err),
315
+ Result::MissingAPIKey => println!("Missing API Key"),
316
+ Result::MissingToken => println!("Missing Token"),
317
+ Result::Failure(_) => println!("General Failure (Response doesn't print)"),
318
Result::FieldClash(clashed_field) => println!("FIELD CLASH: {:?}", clashed_field),
- Result::Success(value) => println!("Result Value: {:?}", value),
319
+ Result::Success(_) => println!("Success (value doesn't print)"),
320
}
321
% endif
322
</%block>
0 commit comments