summaryrefslogtreecommitdiffstats
path: root/For Weekly Test/19-08-2011/DbClass.py
diff options
context:
space:
mode:
Diffstat (limited to 'For Weekly Test/19-08-2011/DbClass.py')
-rw-r--r--For Weekly Test/19-08-2011/DbClass.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/For Weekly Test/19-08-2011/DbClass.py b/For Weekly Test/19-08-2011/DbClass.py
index 4f2d692..f1a88c3 100644
--- a/For Weekly Test/19-08-2011/DbClass.py
+++ b/For Weekly Test/19-08-2011/DbClass.py
@@ -134,7 +134,7 @@ class DBMySQLConnection:
else:
return 0 #I am not connected
- def updateTaskResult(self, taskID, status):
+ def updateTaskResult(self, taskID, status): # we dont need this
if self.connectionCreated == 1:
try:
successful = self.cur.execute("UPDATE TaskTable SET status=%i WHERE taskID=%i"%(int(status), int(taskID)))
@@ -267,7 +267,7 @@ class DBMySQLConnection:
return 0
- def searchTaskList(self, fromDevice, toDevice):
+ def searchTaskList(self, fromDevice, toDevice):#dont need this
if self.connectionCreated == 1:
for item in self.tasksList:
if item != '':