aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp
diff options
context:
space:
mode:
Diffstat (limited to 'gbp')
-rw-r--r--gbp/git/repository.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/gbp/git/repository.py b/gbp/git/repository.py
index 2e80ac50..e73d6dc1 100644
--- a/gbp/git/repository.py
+++ b/gbp/git/repository.py
@@ -106,7 +106,7 @@ class GitRepository(object):
output += popen.stdout.readlines()
return output, popen.returncode
- def __git_inout(self, command, args, input, extra_env=None, cwd=None,
+ def _git_inout(self, command, args, input, extra_env=None, cwd=None,
capture_stderr=False):
"""
Run a git command with input and return output
@@ -993,11 +993,11 @@ class GitRepository(object):
args = [ tree ]
for parent in parents:
args += [ '-p' , parent ]
- sha1, stderr, ret = self.__git_inout('commit-tree',
- args,
- msg,
- extra_env,
- capture_stderr=True)
+ sha1, stderr, ret = self._git_inout('commit-tree',
+ args,
+ msg,
+ extra_env,
+ capture_stderr=True)
if not ret:
return sha1.strip()
else: