switch tabs to spaces

master
Zaahir Moolla 2014-10-07 12:38:19 -04:00
parent c1c0e3c2df
commit 9fbbf1ec5f
1 changed files with 4 additions and 4 deletions

View File

@ -21,10 +21,10 @@ category 'computing_tools';
topics 'programming', 'web_design';
handle query_raw => sub {
# unless trigger words exist, only answer when we have a single word
unless (m/$trigger_words/) {
return if m/\s+/;
}
# unless trigger words exist, only answer when we have a single word
unless (m/$trigger_words/) {
return if m/\s+/;
}
#remove triggers and trim
s/(^$trigger_words)|($trigger_words$)//i;
s/(^\s+)|(\s+$)//;