[pkg-fso-commits] [SCM] FSO frameworkd Debian packaging branch, debian, updated. upstream/0.9.5.5-717-g0f98819

Sebastian Krzyszkowiak seba.dos1 at gmail.com
Sat Aug 6 08:17:54 UTC 2011


The following commit has been merged in the debian branch:
commit 73b0a870cfc83a73b7f8d49568cf6f2d52b4fba4
Author: Sebastian Krzyszkowiak <seba.dos1 at gmail.com>
Date:   Wed Aug 19 22:15:07 2009 +0200

    opimd: SQLite-Calls: fix function names

diff --git a/framework/subsystems/opimd/pimb_sqlite_calls.py b/framework/subsystems/opimd/pimb_sqlite_calls.py
index 921d15d..1ee928f 100644
--- a/framework/subsystems/opimd/pimb_sqlite_calls.py
+++ b/framework/subsystems/opimd/pimb_sqlite_calls.py
@@ -150,7 +150,7 @@ class SQLiteCallBackend(Backend):
         cur.close()
 
 
-    def del_call(self, call_data):
+    def del_entry(self, call_data):
         cur = self.con.cursor()
         for (field_name, field_value) in call_data:
             if field_name=='_backend_entry_id':
@@ -161,7 +161,7 @@ class SQLiteCallBackend(Backend):
         self.con.commit()
         cur.close()
 
-    def upd_call(self, call_data):
+    def upd_entry(self, call_data):
         reqfields = ['Type', 'Timestamp', 'Timezone', 'Direction', 'Duration', 'Cost', 'Answered', 'New', 'Replied']
         cur = self.con.cursor()
         for (field, value) in call_data:
@@ -180,7 +180,7 @@ class SQLiteCallBackend(Backend):
         self.con.commit()
         cur.close()
 
-    def add_call(self, call_data):
+    def add_entry(self, call_data):
         reqfields = ['Type', 'Timestamp', 'Timezone', 'Direction', 'Duration', 'Cost']
         reqIntfields = ['Answered', 'New', 'Replied']
 

-- 
FSO frameworkd Debian packaging



More information about the pkg-fso-commits mailing list