diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-11-03 15:20:28 +0100 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-11-03 15:20:28 +0100 |
commit | 6bca9899b5edeed7f964e3124e382c3573183c68 (patch) | |
tree | 1a369ed2c5db1254bc5ef3aa0b13890aaa9ee443 /lib/git/repo.py | |
parent | 615fc1984b0cc09c8eeab51a1d1c4e05b583b4a7 (diff) | |
download | gitpython-6bca9899b5edeed7f964e3124e382c3573183c68.tar.gz |
repo.is_dirty: is a method now - the property based interface didn't allow all parameters to be used. The test would not test everything either, and I would consider this a bug that slipped through
Diffstat (limited to 'lib/git/repo.py')
-rw-r--r-- | lib/git/repo.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/git/repo.py b/lib/git/repo.py index d81106c0..52469e04 100644 --- a/lib/git/repo.py +++ b/lib/git/repo.py @@ -432,7 +432,6 @@ class Repo(object): alternates = property(_get_alternates, _set_alternates, doc="Retrieve a list of alternates paths or set a list paths to be used as alternates") - @property def is_dirty(self, index=True, working_tree=True, untracked_files=False): """ Returns |