summaryrefslogtreecommitdiff
path: root/README
diff options
context:
space:
mode:
authorMichael Trier <mtrier@gmail.com>2008-05-17 13:06:57 -0400
committerMichael Trier <mtrier@gmail.com>2008-05-17 13:06:57 -0400
commit062aafa396866d4dfe8f3fd2f32d46fa7c01b6dd (patch)
tree1b8f14cbee09dfce1a8f224e793bc4e44ab96793 /README
parentea6af04977c197fd07ab812d394dcb61feebaf67 (diff)
downloadgitpython-062aafa396866d4dfe8f3fd2f32d46fa7c01b6dd.tar.gz
Corrected problem with tree.__len__ getting confused with zero length files. Thanks Alan Briolat.
Diffstat (limited to 'README')
-rw-r--r--README2
1 files changed, 1 insertions, 1 deletions
diff --git a/README b/README
index b68b746f..abb9ad1f 100644
--- a/README
+++ b/README
@@ -195,7 +195,7 @@ A blob has certain attributes.
>>> blob.mime_type
'text/x-python'
- >>> len(blob)
+ >>> blob.size
415
You can get the data of a blob as a string.