diff options
Diffstat (limited to 'background_scripts/commands.coffee')
| -rw-r--r-- | background_scripts/commands.coffee | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/background_scripts/commands.coffee b/background_scripts/commands.coffee index 485195a9..114f46ce 100644 --- a/background_scripts/commands.coffee +++ b/background_scripts/commands.coffee @@ -58,7 +58,7 @@ Commands =      for line in lines        continue if (line[0] == "\"" || line[0] == "#") -      splitLine = line.split(/\s+/) +      splitLine = line.replace(/\s+$/, "").split(/\s+/)        lineCommand = splitLine[0] | 
