Changed from single quoted filter expression to double quotes as reqeusted by codacy

This commit is contained in:
DL6ER 2016-12-02 14:08:54 +01:00
parent c8ad6f23a8
commit 629ca970a1

View file

@ -53,7 +53,7 @@ EOM
EscapeRegexp() { EscapeRegexp() {
# This way we may safely insert an arbitrary # This way we may safely insert an arbitrary
# string in our regular expressions # string in our regular expressions
echo $* | sed 's/[]\.|$(){}?+*^]/\\&/g' | sed 's/\//\\\//g' echo $* | sed "s/[]\\.|$(){}?+*^]/\\\\&/g"
} }
HandleOther(){ HandleOther(){