summaryrefslogtreecommitdiffstats
path: root/git_config.py
diff options
context:
space:
mode:
Diffstat (limited to 'git_config.py')
-rw-r--r--git_config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/git_config.py b/git_config.py
index cdfeddd0..9b3dd25a 100644
--- a/git_config.py
+++ b/git_config.py
@@ -699,7 +699,8 @@ class Remote(object):
699 if not rev.startswith(R_HEADS): 699 if not rev.startswith(R_HEADS):
700 return rev 700 return rev
701 701
702 raise GitError('remote %s does not have %s' % (self.name, rev)) 702 raise GitError('%s: remote %s does not have %s' %
703 (self.projectname, self.name, rev))
703 704
704 def WritesTo(self, ref): 705 def WritesTo(self, ref):
705 """True if the remote stores to the tracking ref. 706 """True if the remote stores to the tracking ref.