From 2ba897b12024fd20681b7c2f1b40bdbbccd5df59 Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Sun, 11 Sep 2016 17:40:44 +0200 Subject: fix(repo): make it serializable with pickle It's entirely untested if this repo still does the right thing, but I'd think it does. Fixes #504 --- git/repo/base.py | 1 - 1 file changed, 1 deletion(-) (limited to 'git/repo') diff --git a/git/repo/base.py b/git/repo/base.py index 312c01ef..0e46ee67 100644 --- a/git/repo/base.py +++ b/git/repo/base.py @@ -93,7 +93,6 @@ class Repo(object): 'git_dir' is the .git repository directory, which is always set.""" DAEMON_EXPORT_FILE = 'git-daemon-export-ok' - __slots__ = ("working_dir", "_working_tree_dir", "git_dir", "_bare", "git", "odb") # precompiled regex re_whitespace = re.compile(r'\s+') -- cgit v1.2.3