From 5915114cdca6f09fa2355162a43596f5d20273be Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Thu, 8 Oct 2009 10:58:28 +0200 Subject: git.git.Git.__init__ takes None as default argument as the execute method handles this correctly --- lib/git/cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/git/cmd.py') diff --git a/lib/git/cmd.py b/lib/git/cmd.py index 9cbad673..a1b85cdc 100644 --- a/lib/git/cmd.py +++ b/lib/git/cmd.py @@ -24,7 +24,7 @@ class Git(object): """ The Git class manages communication with the Git binary """ - def __init__(self, git_dir): + def __init__(self, git_dir=None): super(Git, self).__init__() self.git_dir = git_dir -- cgit v1.2.1