summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRory Dudley2024-05-16 17:50:04 -0600
committerRory Dudley2024-05-16 17:50:04 -0600
commitabc835cd020a66b40d0f39e7c950644b436c3a86 (patch)
tree67a5a734d02bb1bf04c4f6db53b9895bfdf8cebd
parent1291ed9bc778e19203e748a6261cb48c9dd85e30 (diff)
downloaddwarvish-abc835cd020a66b40d0f39e7c950644b436c3a86.tar.gz
Remove a println!()
Removed a println!() that was used for debugging, and was accidentally left in.
-rw-r--r--src/poem/read.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/poem/read.rs b/src/poem/read.rs
index 2b0dd60..afa35e7 100644
--- a/src/poem/read.rs
+++ b/src/poem/read.rs
@@ -79,7 +79,6 @@ impl Appendable for Poem {
Some(alias) => {
// Interpret the alias (could be a complex poem)
let mut poem = Poem::read(alias.to_string(), env)?;
- println!("{:?}", poem);
// Try and get the last verse
let lv = match poem.last_mut() {