Skip to content

Commit

Permalink
Fix args when use_quotes is true
Browse files Browse the repository at this point in the history
  • Loading branch information
arqunis committed Aug 17, 2017
1 parent fc9eba3 commit e7a5ba3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/framework/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -940,7 +940,7 @@ impl ::Framework for BuiltinFramework {
content = content[command_length..].trim();

if command.use_quotes {
utils::parse_quotes(&content[command_length..])
utils::parse_quotes(content)
} else {
let delimiters = &self.configuration.delimiters;
let regular_expression = delimiters.iter()
Expand Down

0 comments on commit e7a5ba3

Please sign in to comment.