diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2009-10-12 14:56:47 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2009-10-12 14:56:47 +0200 |
commit | 637eadce54ca8bbe536bcf7c570c025e28e47129 (patch) | |
tree | c8691e6358e2b626b42c19bb6bb893e83464b40c /lib/git/stats.py | |
parent | f2834177c0fdf6b1af659e460fd3348f468b8ab0 (diff) | |
download | gitpython-637eadce54ca8bbe536bcf7c570c025e28e47129.tar.gz |
renamed from_string and list_from_string to _from_string and _list_from_string to indicate their new status as private method, adjusted all callers respectively
Diffstat (limited to 'lib/git/stats.py')
-rw-r--r-- | lib/git/stats.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/stats.py b/lib/git/stats.py index 19b1591f..bda4e539 100644 --- a/lib/git/stats.py +++ b/lib/git/stats.py @@ -38,7 +38,7 @@ class Stats(object): self.files = files @classmethod - def list_from_string(cls, repo, text): + def _list_from_string(cls, repo, text): """ Create a Stat object from output retrieved by git-diff. |