Update docs to not use UML diagrams. Fixes issue #148.
diff --git a/docs/apiclient.http.html b/docs/apiclient.http.html
index 69a1cad..0aff590 100644
--- a/docs/apiclient.http.html
+++ b/docs/apiclient.http.html
@@ -508,7 +508,6 @@
Note that the Python file <a href="__builtin__.html#object">object</a> is compatible with io.Base and can be used<br>
with this class also.<br>
<br>
- <br>
fh = io.BytesIO('...Some data to upload...')<br>
media = <a href="#MediaIoBaseUpload">MediaIoBaseUpload</a>(fh, mimetype='image/png',<br>
chunksize=1024*1024, resumable=True)<br>
@@ -527,7 +526,8 @@
<dl><dt><a name="MediaIoBaseUpload-__init__"><strong>__init__</strong></a>(self, fh, mimetype, chunksize<font color="#909090">=524288</font>, resumable<font color="#909090">=False</font>)</dt><dd><tt>Constructor.<br>
<br>
Args:<br>
- fh: io.Base or file <a href="__builtin__.html#object">object</a>, The source of the bytes to upload.<br>
+ fh: io.Base or file <a href="__builtin__.html#object">object</a>, The source of the bytes to upload. MUST be<br>
+ opened in blocking mode, do not use streams opened in non-blocking mode.<br>
mimetype: string, Mime-type of the file. If None then a mime-type will be<br>
guessed from the file extension.<br>
chunksize: int, File will be uploaded in chunks of this many bytes. Only<br>