summaryrefslogtreecommitdiffstats
path: root/Src/PyCatcher/src/driverConnector.py
diff options
context:
space:
mode:
authorTom2012-04-19 17:50:03 +0200
committerTom2012-04-19 17:50:03 +0200
commite128a9d22fcb2fa47027ed4fe3f83b0577e4f1b6 (patch)
treea5a4e0090e4eb94343395e1f3403dff3fd3b632b /Src/PyCatcher/src/driverConnector.py
parentimplemented databases save for guis (diff)
downloadimsi-catcher-detection-e128a9d22fcb2fa47027ed4fe3f83b0577e4f1b6.tar.gz
imsi-catcher-detection-e128a9d22fcb2fa47027ed4fe3f83b0577e4f1b6.tar.xz
imsi-catcher-detection-e128a9d22fcb2fa47027ed4fe3f83b0577e4f1b6.zip
finished database implementation and documentation in thesis, incorporated changes in thesis
Diffstat (limited to 'Src/PyCatcher/src/driverConnector.py')
-rw-r--r--Src/PyCatcher/src/driverConnector.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Src/PyCatcher/src/driverConnector.py b/Src/PyCatcher/src/driverConnector.py
index de8a0d4..2e990fd 100644
--- a/Src/PyCatcher/src/driverConnector.py
+++ b/Src/PyCatcher/src/driverConnector.py
@@ -117,7 +117,7 @@ class ScanThread(threading.Thread):
line = scan_process.stdout.readline()
match = re.search(r'rxlev:\s(.\d+)',line)
if match:
- base_station.rxlev = match.group(1)
+ base_station.rxlev = int(match.group(1))
#get si2
line = scan_process.stdout.readline()
match = re.search(r'si2\s(.+)',line)