rename GitInitDB to GitInit
authorGuido Günther <agx@sigxcpu.org>
Sat, 22 Nov 2008 16:45:13 +0000 (17:45 +0100)
committerGuido Guenther <agx@sigxcpu.org>
Sat, 22 Nov 2008 16:46:37 +0000 (17:46 +0100)
gbp/command_wrappers.py

index 0fa33745bad920dff9666460b0504868a8dca27d..0397a3f7e06f168a30f44d90c439f539a900e25c 100644 (file)
@@ -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"