summaryrefslogtreecommitdiff
path: root/lib/git
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git')
-rw-r--r--lib/git/repo.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/git/repo.py b/lib/git/repo.py
index 3efefd9c..898b0f30 100644
--- a/lib/git/repo.py
+++ b/lib/git/repo.py
@@ -42,6 +42,7 @@ class Repo(object):
the log.
"""
DAEMON_EXPORT_FILE = 'git-daemon-export-ok'
+ __slots__ = ( "wd", "path", "_bare", "git" )
# precompiled regex
re_whitespace = re.compile(r'\s+')