From b00f3689aa19938c10576580fbfc9243d9f3866c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Steve=20Fr=C3=A9cinaux?= Date: Tue, 16 Sep 2008 08:08:47 +0200 Subject: 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. --- lib/git/actor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/git/actor.py') 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 '">' % (self.name, self.email) + return '">' % (self.name, self.email) @classmethod def from_string(cls, string): -- cgit v1.2.3