From cc4e25e2915301e0399da9e8f7402147297f74d4 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Thomas=20J=C3=BCrges?= <jurges@astron.nl>
Date: Wed, 20 Feb 2019 13:47:50 +0000
Subject: [PATCH] SW-382:  Replace Python2 integer division (/) with Python3
 one (//)

---
 MAC/Tools/Rubidium/rlp.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/MAC/Tools/Rubidium/rlp.py b/MAC/Tools/Rubidium/rlp.py
index c6e60d0edc3..2459ee7aa24 100755
--- a/MAC/Tools/Rubidium/rlp.py
+++ b/MAC/Tools/Rubidium/rlp.py
@@ -99,7 +99,7 @@ def main():
         line = fpI.readline()
         count += 1
         defOld = defNew
-        defNew = int(count / 10000)
+        defNew = count // 10000
         if defNew != defOld:
             print("Line count: ", count)
 
-- 
GitLab