summaryrefslogtreecommitdiff
path: root/lib/git/actor.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2009-10-12 14:56:47 +0200
committerSebastian Thiel <byronimo@gmail.com>2009-10-12 14:56:47 +0200
commit637eadce54ca8bbe536bcf7c570c025e28e47129 (patch)
treec8691e6358e2b626b42c19bb6bb893e83464b40c /lib/git/actor.py
parentf2834177c0fdf6b1af659e460fd3348f468b8ab0 (diff)
downloadgitpython-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/actor.py')
-rw-r--r--lib/git/actor.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/git/actor.py b/lib/git/actor.py
index f1aeda9b..fe4a47e5 100644
--- a/lib/git/actor.py
+++ b/lib/git/actor.py
@@ -25,7 +25,7 @@ class Actor(object):
return '<git.Actor "%s <%s>">' % (self.name, self.email)
@classmethod
- def from_string(cls, string):
+ def _from_string(cls, string):
"""
Create an Actor from a string.