From c210382475f64b735a46513c0661011229436967 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Guido=20G=C3=BCnther?= Date: Fri, 2 Jul 2010 19:52:47 +0200 Subject: [PATCH] Add extra_env to GitTag Git-Dch: Ignore --- gbp/command_wrappers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gbp/command_wrappers.py b/gbp/command_wrappers.py index 6a0edc8..f500eee 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" -- 2.7.4