diff options
author | Michael Trier <mtrier@gmail.com> | 2008-05-17 13:06:57 -0400 |
---|---|---|
committer | Michael Trier <mtrier@gmail.com> | 2008-05-17 13:06:57 -0400 |
commit | 062aafa396866d4dfe8f3fd2f32d46fa7c01b6dd (patch) | |
tree | 1b8f14cbee09dfce1a8f224e793bc4e44ab96793 /README | |
parent | ea6af04977c197fd07ab812d394dcb61feebaf67 (diff) | |
download | gitpython-062aafa396866d4dfe8f3fd2f32d46fa7c01b6dd.tar.gz |
Corrected problem with tree.__len__ getting confused with zero length files. Thanks Alan Briolat.
Diffstat (limited to 'README')
-rw-r--r-- | README | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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. |