summaryrefslogtreecommitdiffstats
path: root/Code/Server-Code/truthtableClass.py
diff options
context:
space:
mode:
Diffstat (limited to 'Code/Server-Code/truthtableClass.py')
-rwxr-xr-xCode/Server-Code/truthtableClass.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Code/Server-Code/truthtableClass.py b/Code/Server-Code/truthtableClass.py
index bf57ca6..0d7a633 100755
--- a/Code/Server-Code/truthtableClass.py
+++ b/Code/Server-Code/truthtableClass.py
@@ -86,7 +86,7 @@ class trueTable:
self.nanoBts.append([btsName,True])
- if key == call:#
+ if key == call:
for z in externalRZList:# find the result for outgoing call from GSM RZ to external RZ network
if dest == z:
self.outGoingRZ = True #set status as working for outgoing RZ
@@ -96,11 +96,11 @@ class trueTable:
self.incomingRZ = True # find the result for imcoming call to GSM RZ from external RZ network
elif result == '486':
found = False
- if key == call:# and dest == 'landline':
+ if key == call:
for z in externalRZList:
if dest == z and self.outGoingRZ != True:
self.outGoingRZ = False
- if key == dest:# and call == 'landline':
+ if key == dest:
for z in externalRZList:
if call == z and self.incomingRZ != True:
self.incomingRZ = False