lib/travis/tools/notification.rb in travis-1.5.6.travis.319.4 vs lib/travis/tools/notification.rb in travis-1.5.6.travis.320.4

- old
+ new

@@ -44,10 +44,10 @@ def initialize @command = "growlnotify" end def notify(title, body) - system "%s -m %p %p >/dev/null" % [@command, title, body] + system "%s -m %p %p >/dev/null" % [@command, body, title] end def available? system "which #{@command} >/dev/null 2>/dev/null" unless System.windows? end