summaryrefslogtreecommitdiff
path: root/git/repo/base.py
diff options
context:
space:
mode:
authorSebastian Thiel <byronimo@gmail.com>2016-09-11 17:40:44 +0200
committerSebastian Thiel <byronimo@gmail.com>2016-09-11 17:43:18 +0200
commit2ba897b12024fd20681b7c2f1b40bdbbccd5df59 (patch)
treefe1fca314bd72dfceadd36179867e43e9d66e341 /git/repo/base.py
parentae6e26ed4abac8b5e4e0a893da5546cd165d48e7 (diff)
downloadgitpython-2ba897b12024fd20681b7c2f1b40bdbbccd5df59.tar.gz
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
Diffstat (limited to 'git/repo/base.py')
-rw-r--r--git/repo/base.py1
1 files changed, 0 insertions, 1 deletions
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+')