From b90325bd4c71c551afcb9d03ceeabe7a95dbfa82 Mon Sep 17 00:00:00 2001 From: Travis Cline Date: Mon, 26 Apr 2010 17:36:41 -0500 Subject: [PATCH] Fixed filename of initial .git/info/exclude --- dulwich/repo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dulwich/repo.py b/dulwich/repo.py index 067554f..17ad657 100644 --- a/dulwich/repo.py +++ b/dulwich/repo.py @@ -1025,7 +1025,7 @@ class Repo(BaseRepo): bare = false logallrefupdates = true """) - ret._put_named_file(os.path.join('info', 'excludes'), '') + ret._put_named_file(os.path.join('info', 'exclude'), '') return ret create = init_bare -- 2.34.1