Skip to content

Commit

Permalink
Tweak message text format
Browse files Browse the repository at this point in the history
  • Loading branch information
DanNixon committed May 24, 2024
1 parent ccf3b42 commit 6812edf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/event_news.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ impl EventExt for Event {
let venue = Venue::from_schedule_name(&self.venue);

let news_number = news_number_for_venue(&venue);
let msg = format!("{}: {}", venue_short_name(venue), self.title);
let msg = format!("<{}> {}", venue_short_name(venue), self.title);

match OutgoingNewsBuilder::default()
.rubric("emfcamp".to_string())
Expand Down

0 comments on commit 6812edf

Please sign in to comment.