aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/command_wrappers.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2010-07-02 19:52:47 +0200
committerGuido Günther <agx@sigxcpu.org>2010-07-04 16:52:24 +0200
commitc210382475f64b735a46513c0661011229436967 (patch)
treec1dda7ae41751333a5e819f4ffb90d950cbdc10a /gbp/command_wrappers.py
parent9a56969fd974d48a46d13c481ada596341881fbb (diff)
Add extra_env to GitTag
Git-Dch: Ignore
Diffstat (limited to 'gbp/command_wrappers.py')
-rw-r--r--gbp/command_wrappers.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gbp/command_wrappers.py b/gbp/command_wrappers.py
index 6a0edc8a..f500eeef 100644
--- a/gbp/command_wrappers.py
+++ b/gbp/command_wrappers.py
@@ -288,8 +288,8 @@ class GitTag(GitCommand):
class GitAdd(GitCommand):
"""Wrap git add to add new files"""
- def __init__(self):
- GitCommand.__init__(self, 'add')
+ def __init__(self, extra_env=None):
+ GitCommand.__init__(self, 'add', extra_env=extra_env)
self.run_error = "Couldn't add files"