Skip to content
Snippets Groups Projects
Commit cc4e25e2 authored by Thomas Jürges's avatar Thomas Jürges
Browse files

SW-382: Replace Python2 integer division (/) with Python3 one (//)

parent 7e1b53c1
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment