aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/command_wrappers.py
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2011-10-22 16:55:47 +0200
committerGuido Günther <agx@sigxcpu.org>2011-10-23 16:20:33 +0200
commite9e382ef3b26143787aa6d9d0b7a6d5df64c3057 (patch)
tree48a1980f974434bde8513a86012a3af54b0010fa /gbp/command_wrappers.py
parent642db87a79ef5e9b5b8f4b20d63bf5e7141d48b2 (diff)
Replace GitClone by GitRepository.clone()
Diffstat (limited to 'gbp/command_wrappers.py')
-rw-r--r--gbp/command_wrappers.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/gbp/command_wrappers.py b/gbp/command_wrappers.py
index 4c1de100..b7682392 100644
--- a/gbp/command_wrappers.py
+++ b/gbp/command_wrappers.py
@@ -230,14 +230,6 @@ class GitCommand(Command):
self.run_error = "Couldn't run git %s" % cmd
-# FIXME: move to gbp.git.__init__
-class GitClone(GitCommand):
- """Wrap git clone"""
- def __init__(self):
- GitCommand.__init__(self, 'clone')
- self.run_error = "Couldn't clone git repository"
-
-
# FIXME: move to gbp.git.fetch
class GitFetch(GitCommand):
"""Wrap git fetch"""