diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-06-21 15:45:29 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-06-21 15:45:29 +0200 |
commit | 0fdf6c3aaff49494c47aaeb0caa04b3016e10a26 (patch) | |
tree | c41a4e8ff22a1d654ca26558ba5da097e080fb5b /lib/git/objects/tree.py | |
parent | ac62760c52abf28d1fd863f0c0dd48bc4a23d223 (diff) | |
download | gitpython-0fdf6c3aaff49494c47aaeb0caa04b3016e10a26.tar.gz |
index: Entries are now using flags internally, instead of reducing the flag information to just the stage ( just to be closer to the git-original )
Diffstat (limited to 'lib/git/objects/tree.py')
-rw-r--r-- | lib/git/objects/tree.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/objects/tree.py b/lib/git/objects/tree.py index 0da62060..eb8aa9eb 100644 --- a/lib/git/objects/tree.py +++ b/lib/git/objects/tree.py @@ -121,7 +121,7 @@ class Tree(base.IndexObject, diff.Diffable, utils.Traversable, utils.Serializabl __slots__ = "_cache" # actual integer ids for comparison - commit_id = 016 + commit_id = 016 # equals stat.S_IFDIR | stat.S_IFLNK - a directory link blob_id = 010 symlink_id = 012 tree_id = 004 |