diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2016-09-11 17:40:44 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2016-09-11 17:43:18 +0200 |
commit | 2ba897b12024fd20681b7c2f1b40bdbbccd5df59 (patch) | |
tree | fe1fca314bd72dfceadd36179867e43e9d66e341 /git/repo/base.py | |
parent | ae6e26ed4abac8b5e4e0a893da5546cd165d48e7 (diff) | |
download | gitpython-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.py | 1 |
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+') |