summaryrefslogtreecommitdiff
path: root/lib/git/actor.py
diff options
context:
space:
mode:
authorSteve Frécinaux <code@istique.net>2008-09-16 08:08:47 +0200
committerSteve Frécinaux <code@istique.net>2008-09-17 08:08:09 +0200
commitb00f3689aa19938c10576580fbfc9243d9f3866c (patch)
treec9575089d08f9c1f701c7fdb5305b38142131975 /lib/git/actor.py
parent5de63b40dbb8fef7f2f46e42732081ef6d0d8866 (diff)
downloadgitpython-b00f3689aa19938c10576580fbfc9243d9f3866c.tar.gz
Replace GitPython with git in repr() outputs.
The imported module is called git (as in "import git"), so it's less confusing to do so than to call everything GitPython.something.
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 afd94016..901e52af 100644
--- a/lib/git/actor.py
+++ b/lib/git/actor.py
@@ -15,7 +15,7 @@ class Actor(object):
return self.name
def __repr__(self):
- return '<GitPython.Actor "%s <%s>">' % (self.name, self.email)
+ return '<git.Actor "%s <%s>">' % (self.name, self.email)
@classmethod
def from_string(cls, string):