17 lines
373 B
Text
17 lines
373 B
Text
|
Index: getkitver.py
|
||
|
--- getkitver.py.orig
|
||
|
+++ getkitver.py
|
||
|
@@ -1,4 +1,4 @@
|
||
|
-#!/usr/bin/env python
|
||
|
+#!/usr/bin/env python3
|
||
|
|
||
|
import os
|
||
|
import sys
|
||
|
@@ -12,5 +12,5 @@ for l in f:
|
||
|
nums2 = [ ]
|
||
|
for n in nums:
|
||
|
nums2.append (int (n))
|
||
|
- print "%d.%d.%d" % tuple (nums2)[:3]
|
||
|
+ print("%d.%d.%d" % tuple (nums2)[:3])
|
||
|
sys.exit (0)
|