diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index f137417..5219c6d 100644 --- a/src/main.rs +++ b/src/main.rs | |||
@@ -117,7 +117,7 @@ fn parse_arguments() -> Configuration { | |||
117 | .get_matches(); | 117 | .get_matches(); |
118 | 118 | ||
119 | let mut input = String::new(); | 119 | let mut input = String::new(); |
120 | if let Some(i) = config.value_of("input") { | 120 | if let Some(i) = config.value_of("INPUT") { |
121 | input.push_str(i); | 121 | input.push_str(i); |
122 | }; | 122 | }; |
123 | Configuration { | 123 | Configuration { |