Fixed bug with Message parsing causing suffixes to include colon prefix.

This commit is contained in:
Aaron Weiss 2014-11-03 02:42:06 -05:00
parent c8dc582fd1
commit 4479c59e79
2 changed files with 2 additions and 2 deletions

View file

@ -21,6 +21,6 @@ fn main() {
let server = IrcServer::from_config(config).unwrap();
identify(&server).unwrap();
for message in server.iter() {
println!("{}", message)
println!("{}", message.into_string())
}
}