summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gbp/command_wrappers.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/gbp/command_wrappers.py b/gbp/command_wrappers.py
index 0fa3374..0397a3f 100644
--- a/gbp/command_wrappers.py
+++ b/gbp/command_wrappers.py
@@ -165,10 +165,10 @@ class GitCommand(Command):
Command.__init__(self, 'git', [cmd] + args, **kwargs)
-class GitInitDB(GitCommand):
- """Wrap git init-db"""
+class GitInit(GitCommand):
+ """Wrap git init"""
def __init__(self):
- GitCommand.__init__(self, 'init-db')
+ GitCommand.__init__(self, 'init')
self.run_error = "Couldn't init git repository"