cubicweb/migration.py
changeset 12508 a8c1ea390400
parent 11767 432f87a63057
child 12520 c53f66bcc641
--- a/cubicweb/migration.py	Thu Mar 14 14:45:35 2019 +0100
+++ b/cubicweb/migration.py	Thu Mar 14 12:08:37 2019 +0100
@@ -35,7 +35,6 @@
 from logilab.common.configuration import REQUIRED, read_old_config
 from logilab.common.shellutils import ASK
 from logilab.common.changelog import Version
-from logilab.common.deprecation import deprecated
 
 from cubicweb import ConfigurationError, ExecutionError
 from cubicweb.cwconfig import CubicWebConfiguration as cwcfg
@@ -415,10 +414,6 @@
             self.config.add_cubes(newcubes)
         return newcubes
 
-    @deprecated('[3.20] use drop_cube() instead of remove_cube()')
-    def cmd_remove_cube(self, cube, removedeps=False):
-        return self.cmd_drop_cube(cube, removedeps)
-
     def cmd_drop_cube(self, cube, removedeps=False):
         if removedeps:
             toremove = self.config.expand_cubes([cube])