Title: [113277] trunk/Tools
- Revision
- 113277
- Author
- [email protected]
- Date
- 2012-04-04 19:35:54 -0700 (Wed, 04 Apr 2012)
Log Message
Fix typo introduced in r113271.
Unreviewed, build fix.
* Scripts/webkitpy/common/net/file_uploader.py:
(FileUploader._upload_data.callback):
(FileUploader):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (113276 => 113277)
--- trunk/Tools/ChangeLog 2012-04-05 02:28:15 UTC (rev 113276)
+++ trunk/Tools/ChangeLog 2012-04-05 02:35:54 UTC (rev 113277)
@@ -1,3 +1,13 @@
+2012-04-04 Dirk Pranke <[email protected]>
+
+ Fix typo introduced in r113271.
+
+ Unreviewed, build fix.
+
+ * Scripts/webkitpy/common/net/file_uploader.py:
+ (FileUploader._upload_data.callback):
+ (FileUploader):
+
2012-04-04 Scott Graham <[email protected]>
[Chromium, DRT] Bounds check indices on gamepadController
Modified: trunk/Tools/Scripts/webkitpy/common/net/file_uploader.py (113276 => 113277)
--- trunk/Tools/Scripts/webkitpy/common/net/file_uploader.py 2012-04-05 02:28:15 UTC (rev 113276)
+++ trunk/Tools/Scripts/webkitpy/common/net/file_uploader.py 2012-04-05 02:35:54 UTC (rev 113277)
@@ -108,7 +108,7 @@
def _upload_data(self, content_type, data):
def callback():
if self._debug:
- _log.debug("uploading %d bytes to '%s', content-type '%s'" % len(data), self._url, content_type)
+ _log.debug("uploading %d bytes to '%s', content-type '%s'" % (len(data), self._url, content_type))
request = urllib2.Request(self._url, data, {"Content-Type": content_type})
return urllib2.urlopen(request)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes