diff options
author | Ed Bartosh <eduard.bartosh@intel.com> | 2012-06-05 14:39:40 +0300 |
---|---|---|
committer | Guido Günther <agx@sigxcpu.org> | 2012-06-17 10:25:47 +0200 |
commit | 9c542983d27608fbf00e8d952d0b73c93f5faf35 (patch) | |
tree | 369d43b2cefd1c7b2886aa9dda740974b178c9e3 /gbp/deb/git.py | |
parent | 36e09865e8ff0022378efe2305bd067b1ee38fc8 (diff) | |
download | git-buildpackage-9c542983d27608fbf00e8d952d0b73c93f5faf35.tar.gz git-buildpackage-9c542983d27608fbf00e8d952d0b73c93f5faf35.tar.bz2 git-buildpackage-9c542983d27608fbf00e8d952d0b73c93f5faf35.zip |
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.py | 2 |
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: |