aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/deb/git.py
diff options
context:
space:
mode:
authorEd Bartosh <eduard.bartosh@intel.com>2012-06-05 14:39:40 +0300
committerGuido Günther <agx@sigxcpu.org>2012-06-17 10:25:47 +0200
commit9c542983d27608fbf00e8d952d0b73c93f5faf35 (patch)
tree369d43b2cefd1c7b2886aa9dda740974b178c9e3 /gbp/deb/git.py
parent36e09865e8ff0022378efe2305bd067b1ee38fc8 (diff)
deb.git: Fixed typo in method name
the double underscore prefix was dropped ages ago. Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
Diffstat (limited to 'gbp/deb/git.py')
-rw-r--r--gbp/deb/git.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gbp/deb/git.py b/gbp/deb/git.py
index 7e13b5ea..c9004ef8 100644
--- a/gbp/deb/git.py
+++ b/gbp/deb/git.py
@@ -51,7 +51,7 @@ class DebianGitRepository(GitRepository):
# dereference to a commit object
return self.rev_parse("%s^0" % tag)
elif self.has_tag(legacy_tag):
- out, ret = self.__git_getoutput('cat-file', args=['-p', legacy_tag])
+ out, ret = self._git_getoutput('cat-file', args=['-p', legacy_tag])
if ret:
return None
for line in out: