summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs
index cf0d308..ec0e660 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -135,9 +135,7 @@ fn main() {
.value_of("base_url")
.unwrap_or("http://localhost:8000");
- let static_path = matches
- .value_of("static_path")
- .unwrap_or("./static");
+ let static_path = matches.value_of("static_path").unwrap_or("./static");
let db_url = matches.value_of("database_url").unwrap();
let conn = PgConnection::establish(db_url).unwrap();