summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2019-09-20 10:31:23 +0300
committerLars Wirzenius <liw@liw.fi>2019-09-20 10:31:23 +0300
commite872c2cf6417f5ce2388c19dfbb2f82118743b43 (patch)
tree6e62fc418e697ea370f703551ff704c6f3807ea7 /src
parentf63b44297bca294194f7ad467b6f74c13099c3d7 (diff)
downloadroadmap-e872c2cf6417f5ce2388c19dfbb2f82118743b43.tar.gz
Fix: unwrap from_yaml result
Diffstat (limited to 'src')
-rw-r--r--src/bin/roadmap2dot.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/roadmap2dot.rs b/src/bin/roadmap2dot.rs
index a1435e0..599c178 100644
--- a/src/bin/roadmap2dot.rs
+++ b/src/bin/roadmap2dot.rs
@@ -9,7 +9,7 @@ second:
label: the second step
depends:
- first
-");
+").unwrap();
println!("{}", r.as_dot().unwrap());
}