aboutsummaryrefslogtreecommitdiff
path: root/src/framework/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/framework/mod.rs')
-rw-r--r--src/framework/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework/mod.rs b/src/framework/mod.rs
index 9206040..ce484e4 100644
--- a/src/framework/mod.rs
+++ b/src/framework/mod.rs
@@ -937,7 +937,7 @@ impl ::Framework for BuiltinFramework {
utils::parse_quotes(&content[command_length..])
} else {
content[command_length..]
- .split_whitespace()
+ .split(&self.configuration.delimeter)
.map(|arg| arg.to_owned())
.collect::<Vec<String>>()
}