summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2008-11-22 17:45:13 +0100
committerGuido Guenther <agx@sigxcpu.org>2008-11-22 17:46:37 +0100
commita5d3c847337fd34f491b386e2b7cd42fca23b941 (patch)
treeac4bb22336f49a0b6199b5d2b67760240679a303
parent37d5237bbcb3f1bbbd47f8626920e2fe1c307ba4 (diff)
rename GitInitDB to GitInit
-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 0fa33745..0397a3f7 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"