[kernel] r11141 - people/waldi/dkt/bin

Bastian Blank waldi at alioth.debian.org
Wed Apr 23 13:43:23 UTC 2008


Author: waldi
Date: Wed Apr 23 13:43:22 2008
New Revision: 11141

Log:
bin/dkt-maintainer: Remove remaining NotImplementedErrors.


Modified:
   people/waldi/dkt/bin/dkt-maintainer

Modified: people/waldi/dkt/bin/dkt-maintainer
==============================================================================
--- people/waldi/dkt/bin/dkt-maintainer	(original)
+++ people/waldi/dkt/bin/dkt-maintainer	Wed Apr 23 13:43:22 2008
@@ -94,7 +94,6 @@
     def __call__(self):
         self.run_systemtask()
         self.run_imagetask('preinst', self.itemconfig, (self.command,) + self.args)
-        raise NotImplementedError
 
 class MainImagePostInst(MainAllPostInst):
     def __call__(self):
@@ -115,31 +114,26 @@
     def __call__(self):
         self.run_systemtask()
         self.run_imagetask('postrm', self.itemconfig, (self.command,) + self.args)
-        raise NotImplementedError
 
 class MainModulesPreInst(MainAllPreInst):
     def __call__(self):
         self.run_systemtask()
         self.run_modulestask('preinst', self.itemconfig, (self.command,) + self.args)
-        raise NotImplementedError
 
 class MainModulesPostInst(MainAllPostInst):
     def __call__(self):
         self.run_systemtask()
         self.run_modulestask('postinst', self.itemconfig, (self.command,) + self.args)
-        raise NotImplementedError
 
 class MainModulesPreRm(MainAllPreRm):
     def __call__(self):
         self.run_systemtask()
         self.run_modulestask('prerm', self.itemconfig, (self.command,) + self.args)
-        raise NotImplementedError
 
 class MainModulesPostRm(MainAllPostRm):
     def __call__(self):
         self.run_systemtask()
         self.run_modulestask('postrm', self.itemconfig, (self.command,) + self.args)
-        raise NotImplementedError
 
 clss = {
     'image-preinst': MainImagePreInst,



More information about the Kernel-svn-changes mailing list