Skip to content
This repository has been archived by the owner on Aug 3, 2023. It is now read-only.

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleymichal committed Mar 11, 2020
1 parent 26b4653 commit f28cb94
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/commands/publish.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ pub fn publish(

let feature = if uses_kv_bucket {
let wrangler_toml = style("`wrangler.toml`").yellow().bold();
let issue_link = style("https://github.com/cloudflare/wrangler/issues/1136").blue().bold();
let issue_link = style("https://github.com/cloudflare/wrangler/issues/1136")
.blue()
.bold();
let msg = format!("As of 1.9.0, you will no longer be able to specify a bucket for a kv namespace in your {}.\nIf your application depends on this feature, please file an issue with your use case here:\n{}", wrangler_toml, issue_link);
message::deprecation_warning(&msg);

Expand Down
2 changes: 1 addition & 1 deletion src/terminal/message.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ pub fn help(msg: &str) {
}

pub fn deprecation_warning(msg: &str) {
let bb = boxx::builder()
let bb = boxx::builder()
.border_style(BorderStyle::Round)
.border_color(BorderColor::Red)
.margin(1)
Expand Down

0 comments on commit f28cb94

Please sign in to comment.