pcucontrol owned in %files section
[monitor.git] / model.py
index 558d04d..c8f6331 100644 (file)
--- a/model.py
+++ b/model.py
@@ -108,16 +108,4 @@ class Diagnose(MonRecord):
                MonRecord.__init__(self, data)
                return
 
-class Action(MonRecord):
-       def __init__(self, host, data):
-               self.host = host
-               MonRecord.__init__(self, data)
-               return
-
-       def deltaDays(self, delta):
-               t = datetime.fromtimestamp(self.__dict__['time'])
-               d = t + timedelta(delta)
-               self.__dict__['time'] = time.mktime(d.timetuple())
-               
-