aboutsummaryrefslogtreecommitdiffstats
path: root/app/models
diff options
context:
space:
mode:
Diffstat (limited to 'app/models')
-rw-r--r--app/models/incoming_message.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/incoming_message.rb b/app/models/incoming_message.rb
index bfb318565..a7341d77a 100644
--- a/app/models/incoming_message.rb
+++ b/app/models/incoming_message.rb
@@ -180,7 +180,7 @@ def external_command(program_name, *args)
xc.run()
if xc.status != 0
# Error
- $stderr.puts("Error from #{program_name} #{args.join(' '):}")
+ $stderr.puts("Error from #{program_name} #{args.join(' ')}:")
$stderr.print(xc.err)
return nil
else