Title: [150723] trunk/Tools
Revision
150723
Author
[email protected]
Date
2013-05-26 15:32:43 -0700 (Sun, 26 May 2013)

Log Message

roll-chromium-deps doesn't repeat the full name.

Rubber-stamped by Andreas Kling.

* Scripts/webkitpy/tool/bot/irc_command.py:
(RollChromiumDEPS.execute):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (150722 => 150723)


--- trunk/Tools/ChangeLog	2013-05-26 22:23:18 UTC (rev 150722)
+++ trunk/Tools/ChangeLog	2013-05-26 22:32:43 UTC (rev 150723)
@@ -1,3 +1,12 @@
+2013-05-26  Ryosuke Niwa  <[email protected]>
+
+        roll-chromium-deps doesn't repeat the full name.
+
+        Rubber-stamped by Andreas Kling.
+
+        * Scripts/webkitpy/tool/bot/irc_command.py:
+        (RollChromiumDEPS.execute):
+
 2013-05-25  Ryosuke Niwa  <[email protected]>
 
         Revert another erroneous change.

Modified: trunk/Tools/Scripts/webkitpy/tool/bot/irc_command.py (150722 => 150723)


--- trunk/Tools/Scripts/webkitpy/tool/bot/irc_command.py	2013-05-26 22:23:18 UTC (rev 150722)
+++ trunk/Tools/Scripts/webkitpy/tool/bot/irc_command.py	2013-05-26 22:32:43 UTC (rev 150723)
@@ -153,9 +153,9 @@
     def execute(self, nick, args, tool, sheriff):
         if not len(args):
             return self.usage(nick)
-        tool.irc().post("%s: Will roll Chromium DEPS to %s" % (nick, args[0]))
-        tool.irc().post("%s: Rolling Chromium DEPS to %s" % (nick, args[0]))
-        tool.irc().post("%s: Rolled Chromium DEPS to %s" % (nick, args[0]))
+        tool.irc().post("%s: Will roll Chromium DEPS to %s" % (nick, ' '.join(args)))
+        tool.irc().post("%s: Rolling Chromium DEPS to %s" % (nick, ' '.join(args))
+        tool.irc().post("%s: Rolled Chromium DEPS to %s" % (nick, ' '.join(args))
         tool.irc().post("%s: Thank You" % nick)
 
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to