Title: [105741] trunk/Tools
Revision
105741
Author
[email protected]
Date
2012-01-24 08:58:44 -0800 (Tue, 24 Jan 2012)

Log Message

Build fix attempt after r105543.

* Scripts/webkitpy/common/net/file_uploader.py:
(FileUploader.upload_as_multipart_form_data):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (105740 => 105741)


--- trunk/Tools/ChangeLog	2012-01-24 16:22:57 UTC (rev 105740)
+++ trunk/Tools/ChangeLog	2012-01-24 16:58:44 UTC (rev 105741)
@@ -1,3 +1,10 @@
+2012-01-24  Ryosuke Niwa  <[email protected]>
+
+        Build fix attempt after r105543.
+
+        * Scripts/webkitpy/common/net/file_uploader.py:
+        (FileUploader.upload_as_multipart_form_data):
+
 2012-01-24  Mario Sanchez Prada  <[email protected]>
 
         Unreviewed, skip WK2 API test timing out on some GTK bots.

Modified: trunk/Tools/Scripts/webkitpy/common/net/file_uploader.py (105740 => 105741)


--- trunk/Tools/Scripts/webkitpy/common/net/file_uploader.py	2012-01-24 16:22:57 UTC (rev 105740)
+++ trunk/Tools/Scripts/webkitpy/common/net/file_uploader.py	2012-01-24 16:58:44 UTC (rev 105741)
@@ -91,7 +91,7 @@
     def upload_single_text_file(self, filesystem, content_type, filename):
         return self._upload_data(content_type, filesystem.read_text_file(filename))
 
-    def upload_as_multipart_form_data(self, filesystem, files, params, timeout_seconds):
+    def upload_as_multipart_form_data(self, filesystem, files, attrs):
         file_objs = []
         for filename, path in files:
             # FIXME: We should talk to the filesytem via a Host object.
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to