From 6f323dcd6f3624e08f8ef180d886c62f681ac2f1 Mon Sep 17 00:00:00 2001 From: Brian Stinson Date: Fri, 13 Jun 2014 23:18:26 -0500 Subject: [PATCH] run the superclass version of clone, we don't need to do too much here yet --- src/centpkg/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/centpkg/__init__.py b/src/centpkg/__init__.py index 17e8edb..0d1f025 100644 --- a/src/centpkg/__init__.py +++ b/src/centpkg/__init__.py @@ -70,7 +70,7 @@ class Commands(pyrpkg.Commands): raise NotImplementedError("This command is not yet implemented in centpkg") def clone(self, *args, **kwargs): - raise NotImplementedError("This command is not yet implemented in centpkg") + super(Commands,self).clone(*args, **kwargs) def clone_with_dirs(self, *args, **kwargs): raise NotImplementedError("This command is not yet implemented in centpkg")