From 6f323dcd6f3624e08f8ef180d886c62f681ac2f1 Mon Sep 17 00:00:00 2001 From: Brian Stinson Date: Jun 14 2014 04:18:26 +0000 Subject: run the superclass version of clone, we don't need to do too much here yet --- 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")